- Timestamp:
- 07/31/20 10:15:02 (5 years ago)
- Branches:
- master
- Children:
- d8fafb8
- Parents:
- 4e72684
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/FarmatikoRepoInterfaces/IMedicineListRepository.cs
r4e72684 ra55ef91 1 1 using FarmatikoData.Models; 2 2 using System.Collections.Generic; 3 using System.Linq; 3 4 4 5 namespace FarmatikoData.FarmatikoRepo … … 8 9 void Add(MedicineList medicineList); 9 10 void Remove(MedicineList medicineList); 10 IEnumerable<MedicineList> GetAll(); 11 //Not needed, maybe later 12 /*MedicineList CheckMedicine(MedicineList medicineList, bool HasMedicine); 13 public MedicineList CheckMedicine(string Name);*/ 11 IQueryable<MedicineList> GetAll(); 12 /*MedicineList CheckMedicine(MedicineList medicineList, bool HasMedicine);*/ 13 //public MedicineList CheckMedicine(string Name); 14 14 ICollection<MedicineList> GetByName(string Name); 15 15 ICollection<MedicineList> GetByManufacturer(string Manufacturer); 16 bool SetHasMedicine(MedicineList medicineList, bool HasMedicine); 16 //bool SetHasMedicine(MedicineList medicineList, bool HasMedicine); 17 //void SetHasMedicine(MedicineList medicineList); 17 18 } 18 19 }
Note:
See TracChangeset
for help on using the changeset viewer.