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