Last change
on this file since 5d02859 was c406ae5, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Update Models, Repos, Services and Controllers
|
-
Property mode
set to
100644
|
File size:
556 bytes
|
Rev | Line | |
---|
[4e72684] | 1 | using FarmatikoData.Models;
|
---|
| 2 | using System.Linq;
|
---|
[c406ae5] | 3 | using System.Threading.Tasks;
|
---|
[4e72684] | 4 |
|
---|
| 5 | namespace FarmatikoServices.FarmatikoServiceInterfaces
|
---|
| 6 | {
|
---|
| 7 | public interface IPharmacyHeadService
|
---|
| 8 | {
|
---|
| 9 | void Add(PharmacyHead pharmacyHead);
|
---|
[c406ae5] | 10 | void Remove(PharmacyHead pharmacyHead);
|
---|
| 11 | Task<IQueryable<PharmacyHead>> GetAllPharmacies(string NameOfPharmacyHead);
|
---|
[4e72684] | 12 | //Not actually needed
|
---|
[c406ae5] | 13 | Task<IQueryable<PharmacyHead>> GetPharmacyByName(string Name);
|
---|
| 14 | Task<IQueryable<MedicineList>> GetPharmacyMedicines(string NameOfPharmacy);
|
---|
[4e72684] | 15 | }
|
---|
| 16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.