- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoServices/FarmatikoServiceInterfaces/IMedicineListService.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 … … 7 8 public interface IMedicineListService 8 9 { 9 IQueryable<MedicineList> GetAll();10 Task<IQueryable<MedicineList>> GetAll(); 10 11 //SetHasMedicine(MedicineList medicineList, bool HasMedicine); 11 ICollection<MedicineList> GetByName(string Name);12 ICollection<MedicineList> GetByManufacturer(string Manufacturer);12 Task<ICollection<MedicineList>> GetByName(string Name); 13 Task<ICollection<MedicineList>> GetByManufacturer(string Manufacturer); 13 14 void Add(MedicineList medicineList); 14 15 void Remove(MedicineList medicineList);
Note:
See TracChangeset
for help on using the changeset viewer.