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