source: FarmatikoServices/FarmatikoServiceInterfaces/IMedicineListService.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: 537 bytes
Line 
1using FarmatikoData.Models;
2using System.Collections.Generic;
3using System.Linq;
4
5namespace FarmatikoServices.FarmatikoServiceInterfaces
6{
7 public interface IMedicineListService
8 {
9 IQueryable<MedicineList> GetAll();
10 //SetHasMedicine(MedicineList medicineList, bool HasMedicine);
11 ICollection<MedicineList> GetByName(string Name);
12 ICollection<MedicineList> GetByManufacturer(string Manufacturer);
13 void Add(MedicineList medicineList);
14 void Remove(MedicineList medicineList);
15 }
16}
Note: See TracBrowser for help on using the repository browser.