Last change
on this file since 4e72684 was e42f61a, checked in by DimitarSlezenkovski <dslezenkovski@…>, 5 years ago |
Add more services
|
-
Property mode
set to
100644
|
File size:
444 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();
|
---|
[e42f61a] | 11 | IEnumerable<Medicine> GetByName(string Name);
|
---|
[37c8d1d] | 12 | void Add(Medicine medicine);
|
---|
| 13 | void Remove(string medicine);
|
---|
[e42f61a] | 14 | IEnumerable<Medicine> GetByManufacturer(string Manufacturer);
|
---|
[37c8d1d] | 15 |
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.