source:
FarmatikoData/FarmatikoRepoInterfaces/IMedicineListRepository.cs@
785b8bd
Last change on this file since 785b8bd was 37c8d1d, checked in by , 3 years ago | |
---|---|
|
|
File size: 371 bytes |
Rev | Line | |
---|---|---|
[37c8d1d] | 1 | using FarmatikoData.Models; |
2 | using System; | |
3 | using System.Collections.Generic; | |
4 | using System.Text; | |
5 | ||
6 | namespace FarmatikoData.FarmatikoRepo | |
7 | { | |
8 | public interface IMedicineListRepository | |
9 | { | |
10 | void Add(MedicineList medicineList); | |
11 | void Remove(MedicineList medicineList); | |
12 | MedicineList GetAll(); | |
13 | MedicineList CheckMedicine(string Name); | |
14 | } | |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.