Last change
on this file since de2baac was de2baac, checked in by DimitarSlezenkovski <dslezenkovski@…>, 3 years ago |
Add classes & interfaces for Repo
|
-
Property mode
set to
100644
|
File size:
489 bytes
|
Rev | Line | |
---|
[de2baac] | 1 | using FarmatikoData.Models;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Collections.Generic;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace FarmatikoData.FarmatikoRepoInterfaces
|
---|
| 7 | {
|
---|
| 8 | public interface IPharmacyHeadRepository
|
---|
| 9 | {
|
---|
| 10 | void Add(PharmacyHead pharmacyHead);
|
---|
| 11 | void Remove(PharmacyHead pharmacyHead, string Name);
|
---|
| 12 | ICollection<PharmacyHead> GetAllPharmacies(string NameOfPharmacyHead);
|
---|
| 13 | //Not actually needed
|
---|
| 14 | IEnumerable<PharmacyHead> GetPharmacyByName(string Name);
|
---|
| 15 | }
|
---|
| 16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.