Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • FarmatikoServices/FarmatikoServiceInterfaces/IMedicineListService.cs

    rc406ae5 ra55ef91  
    22using System.Collections.Generic;
    33using System.Linq;
    4 using System.Threading.Tasks;
    54
    65namespace FarmatikoServices.FarmatikoServiceInterfaces
     
    87    public interface IMedicineListService
    98    {
    10         Task<IQueryable<MedicineList>> GetAll();
     9        IQueryable<MedicineList> GetAll();
    1110        //SetHasMedicine(MedicineList medicineList, bool HasMedicine);
    12         Task<ICollection<MedicineList>> GetByName(string Name);
    13         Task<ICollection<MedicineList>> GetByManufacturer(string Manufacturer);
     11        ICollection<MedicineList> GetByName(string Name);
     12        ICollection<MedicineList> GetByManufacturer(string Manufacturer);
    1413        void Add(MedicineList medicineList);
    1514        void Remove(MedicineList medicineList);
Note: See TracChangeset for help on using the changeset viewer.