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