source: FarmatikoServices/FarmatikoServiceInterfaces/IMedicineService.cs@ 58fa654

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
RevLine 
[e42f61a]1using FarmatikoData.Models;
[a55ef91]2using System.Linq;
[e42f61a]3
4namespace FarmatikoServices.FarmatikoServiceInterfaces
5{
6 public interface IMedicineService
7 {
[a55ef91]8 IQueryable<Medicine> GetAll();
[e42f61a]9 void Add(Medicine medicine);
10 void Remove(string Medicine);
[a55ef91]11 IQueryable<Medicine> GetByName(string Name);
12 IQueryable<Medicine> GetByManufacturer(string Manufacturer);
[e42f61a]13 }
14}
Note: See TracBrowser for help on using the repository browser.