source: FarmatikoData/FarmatikoRepoInterfaces/IPharmacyHeadRepository.cs@ 63d885e

Last change on this file since 63d885e was c406ae5, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Update Models, Repos, Services and Controllers

  • Property mode set to 100644
File size: 504 bytes
Line 
1using FarmatikoData.Models;
2using System.Linq;
3
4namespace FarmatikoData.FarmatikoRepoInterfaces
5{
6 public interface IPharmacyHeadRepository
7 {
8 void Add(PharmacyHead pharmacyHead);
9 void Remove(PharmacyHead pharmacyHead);
10 IQueryable<PharmacyHead> GetAllPharmacies(string NameOfPharmacyHead);
11 //Not actually needed
12 IQueryable<PharmacyHead> GetPharmacyByName(string Name);
13 IQueryable<MedicineList> GetPharmacyMedicines(string NameOfPharmacy);
14 }
15}
Note: See TracBrowser for help on using the repository browser.