source: FarmatikoServices/FarmatikoServiceInterfaces/IMedicineListService.cs@ a55ef91

Last change on this file since a55ef91 was a55ef91, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Update & add service

  • Property mode set to 100644
File size: 537 bytes
RevLine 
[e42f61a]1using FarmatikoData.Models;
2using System.Collections.Generic;
[a55ef91]3using System.Linq;
[e42f61a]4
5namespace FarmatikoServices.FarmatikoServiceInterfaces
6{
7 public interface IMedicineListService
8 {
[a55ef91]9 IQueryable<MedicineList> GetAll();
10 //SetHasMedicine(MedicineList medicineList, bool HasMedicine);
[e42f61a]11 ICollection<MedicineList> GetByName(string Name);
12 ICollection<MedicineList> GetByManufacturer(string Manufacturer);
[a55ef91]13 void Add(MedicineList medicineList);
14 void Remove(MedicineList medicineList);
[e42f61a]15 }
16}
Note: See TracBrowser for help on using the repository browser.