- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoServices/FarmatikoServiceInterfaces/IPharmacyService.cs
ra55ef91 rc406ae5 2 2 using System.Collections.Generic; 3 3 using System.Linq; 4 using System.Threading.Tasks; 4 5 5 6 namespace FarmatikoServices.FarmatikoServiceInterfaces … … 8 9 { 9 10 void Add(Pharmacy pharmacy); 10 ICollection<Pharmacy> GetPharmacies();11 IQueryable<Pharmacy> GetAll();11 Task<ICollection<Pharmacy>> GetPharmacies(); 12 Task<IQueryable<Pharmacy>> GetAll(); 12 13 void Remove(Pharmacy pharmacy); 13 void UpdatePharmacy(Pharmacy pharmacy , string Name);14 void UpdatePharmacy(Pharmacy pharmacy); 14 15 } 15 16 }
Note:
See TracChangeset
for help on using the changeset viewer.