source:
FarmatikoData/FarmatikoRepoInterfaces/IMedicineListRepository.cs@
de2baac
Last change on this file since de2baac was 37c8d1d, checked in by , 4 years ago | |
---|---|
|
|
File size: 371 bytes |
Line | |
---|---|
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.