- Timestamp:
- 08/07/20 11:01:25 (4 years ago)
- Branches:
- master
- Children:
- 5d02859
- Parents:
- ee137aa (diff), c406ae5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoServices/FarmatikoServiceInterfaces/IMedicineService.cs
ree137aa r63d885e 1 1 using FarmatikoData.Models; 2 2 using System.Linq; 3 using System.Threading.Tasks; 3 4 4 5 namespace FarmatikoServices.FarmatikoServiceInterfaces … … 6 7 public interface IMedicineService 7 8 { 8 IQueryable<Medicine> GetAll();9 Task<IQueryable<Medicine>> GetAll(); 9 10 void Add(Medicine medicine); 10 void Remove( stringMedicine);11 IQueryable<Medicine> GetByName(string Name);12 IQueryable<Medicine> GetByManufacturer(string Manufacturer);11 void Remove(Medicine Medicine); 12 Task<IQueryable<Medicine>> GetByName(string Name); 13 Task<IQueryable<Medicine>> GetByManufacturer(string Manufacturer); 13 14 } 14 15 }
Note:
See TracChangeset
for help on using the changeset viewer.