Last change
on this file since a55ef91 was a55ef91, checked in by DimitarSlezenkovski <dslezenkovski@…>, 5 years ago |
Update & add service
|
-
Property mode
set to
100644
|
File size:
737 bytes
|
Rev | Line | |
---|
[37c8d1d] | 1 | using FarmatikoData.Models;
|
---|
| 2 | using System.Collections.Generic;
|
---|
[a55ef91] | 3 | using System.Linq;
|
---|
[37c8d1d] | 4 |
|
---|
| 5 | namespace FarmatikoData.FarmatikoRepo
|
---|
| 6 | {
|
---|
| 7 | public interface IMedicineListRepository
|
---|
| 8 | {
|
---|
| 9 | void Add(MedicineList medicineList);
|
---|
| 10 | void Remove(MedicineList medicineList);
|
---|
[a55ef91] | 11 | IQueryable<MedicineList> GetAll();
|
---|
| 12 | /*MedicineList CheckMedicine(MedicineList medicineList, bool HasMedicine);*/
|
---|
| 13 | //public MedicineList CheckMedicine(string Name);
|
---|
[e42f61a] | 14 | ICollection<MedicineList> GetByName(string Name);
|
---|
| 15 | ICollection<MedicineList> GetByManufacturer(string Manufacturer);
|
---|
[a55ef91] | 16 | //bool SetHasMedicine(MedicineList medicineList, bool HasMedicine);
|
---|
| 17 | //void SetHasMedicine(MedicineList medicineList);
|
---|
[37c8d1d] | 18 | }
|
---|
| 19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.