- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoServices/FarmatikoServiceInterfaces/IPharmacyHeadService.cs
ra55ef91 rc406ae5 1 1 using FarmatikoData.Models; 2 2 using System.Linq; 3 using System.Threading.Tasks; 3 4 4 5 namespace FarmatikoServices.FarmatikoServiceInterfaces … … 7 8 { 8 9 void Add(PharmacyHead pharmacyHead); 9 void Remove(PharmacyHead pharmacyHead , string Name);10 IQueryable<PharmacyHead> GetAllPharmacies(string NameOfPharmacyHead);10 void Remove(PharmacyHead pharmacyHead); 11 Task<IQueryable<PharmacyHead>> GetAllPharmacies(string NameOfPharmacyHead); 11 12 //Not actually needed 12 IQueryable<PharmacyHead> GetPharmacyByName(string Name);13 IQueryable<MedicineList> GetPharmacyMedicines(string NameOfPharmacy);13 Task<IQueryable<PharmacyHead>> GetPharmacyByName(string Name); 14 Task<IQueryable<MedicineList>> GetPharmacyMedicines(string NameOfPharmacy); 14 15 } 15 16 }
Note:
See TracChangeset
for help on using the changeset viewer.