source: FarmatikoData/FarmatikoRepoInterfaces/IHealthFacilityRepository.cs@ c406ae5

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

Update Models, Repos, Services and Controllers

  • Property mode set to 100644
File size: 375 bytes
Line 
1using FarmatikoData.Models;
2using System.Linq;
3
4namespace FarmatikoData.FarmatikoRepoInterfaces
5{
6 public interface IHealthFacilityRepository
7 {
8 IQueryable<HealthFacilities> GetAll();
9 void Add(HealthFacilities healthFacility);
10 void Remove(HealthFacilities healthFacility);
11 IQueryable<HealthFacilities> GetByName(string Name);
12 }
13}
Note: See TracBrowser for help on using the repository browser.