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