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