Changeset 63d885e for FarmatikoData/FarmatikoRepoInterfaces
- 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. - Location:
- FarmatikoData/FarmatikoRepoInterfaces
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/FarmatikoRepoInterfaces/IHealthFacilityRepository.cs
ree137aa r63d885e 9 9 void Add(HealthFacilities healthFacility); 10 10 void Remove(HealthFacilities healthFacility); 11 IQueryable<HealthFacilities> GetByName(string Name); 11 12 } 12 13 } -
FarmatikoData/FarmatikoRepoInterfaces/IMedicineRepository.cs
ree137aa r63d885e 9 9 IQueryable<Medicine> GetByName(string Name); 10 10 void Add(Medicine medicine); 11 void Remove( stringmedicine);11 void Remove(Medicine medicine); 12 12 IQueryable<Medicine> GetByManufacturer(string Manufacturer); 13 13 -
FarmatikoData/FarmatikoRepoInterfaces/IPharmacyHeadRepository.cs
ree137aa r63d885e 7 7 { 8 8 void Add(PharmacyHead pharmacyHead); 9 void Remove(PharmacyHead pharmacyHead , string Name);9 void Remove(PharmacyHead pharmacyHead); 10 10 IQueryable<PharmacyHead> GetAllPharmacies(string NameOfPharmacyHead); 11 11 //Not actually needed -
FarmatikoData/FarmatikoRepoInterfaces/IPharmacyRepository.cs
ree137aa r63d885e 11 11 IQueryable<Pharmacy> GetAll(); 12 12 void Remove(Pharmacy pharmacy); 13 void UpdatePharmacy(Pharmacy pharmacy , string Name);13 void UpdatePharmacy(Pharmacy pharmacy); 14 14 15 15 }
Note:
See TracChangeset
for help on using the changeset viewer.