Last change
on this file since 58fa654 was a55ef91, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Update & add service
|
-
Property mode
set to
100644
|
File size:
396 bytes
|
Line | |
---|
1 | using FarmatikoData.Models;
|
---|
2 | using System.Linq;
|
---|
3 |
|
---|
4 | namespace FarmatikoServices.FarmatikoServiceInterfaces
|
---|
5 | {
|
---|
6 | public interface IMedicineService
|
---|
7 | {
|
---|
8 | IQueryable<Medicine> GetAll();
|
---|
9 | void Add(Medicine medicine);
|
---|
10 | void Remove(string Medicine);
|
---|
11 | IQueryable<Medicine> GetByName(string Name);
|
---|
12 | IQueryable<Medicine> GetByManufacturer(string Manufacturer);
|
---|
13 | }
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.