Changeset 4e72684 for FarmatikoServices/FarmatikoServiceInterfaces
- Timestamp:
- 07/29/20 20:02:58 (4 years ago)
- Branches:
- master
- Children:
- a55ef91
- Parents:
- de18858
- Location:
- FarmatikoServices/FarmatikoServiceInterfaces
- Files:
-
- 3 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoServices/FarmatikoServiceInterfaces/IMedicineListService.cs
rde18858 r4e72684 1 1 using FarmatikoData.Models; 2 using System;3 2 using System.Collections.Generic; 4 using System.Text;5 3 6 4 namespace FarmatikoServices.FarmatikoServiceInterfaces … … 8 6 public interface IMedicineListService 9 7 { 10 I Collection<MedicineList> GetAll();11 voidSetHasMedicine(MedicineList medicineList, bool HasMedicine);8 IEnumerable<MedicineList> GetAll(); 9 bool SetHasMedicine(MedicineList medicineList, bool HasMedicine); 12 10 ICollection<MedicineList> GetByName(string Name); 13 11 ICollection<MedicineList> GetByManufacturer(string Manufacturer);
Note:
See TracChangeset
for help on using the changeset viewer.