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