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:
521 bytes
|
Rev | Line | |
---|
[4e72684] | 1 | using FarmatikoData.Models;
|
---|
| 2 | using System.Linq;
|
---|
| 3 |
|
---|
| 4 | namespace FarmatikoServices.FarmatikoServiceInterfaces
|
---|
| 5 | {
|
---|
| 6 | public interface IPharmacyHeadService
|
---|
| 7 | {
|
---|
| 8 | void Add(PharmacyHead pharmacyHead);
|
---|
| 9 | void Remove(PharmacyHead pharmacyHead, string Name);
|
---|
| 10 | IQueryable<PharmacyHead> GetAllPharmacies(string NameOfPharmacyHead);
|
---|
| 11 | //Not actually needed
|
---|
| 12 | IQueryable<PharmacyHead> GetPharmacyByName(string Name);
|
---|
| 13 | IQueryable<MedicineList> GetPharmacyMedicines(string NameOfPharmacy);
|
---|
| 14 | }
|
---|
| 15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.