source:
FarmatikoData/FarmatikoRepoInterfaces/IHealthFacilityRepository.cs@
ee137aa
Last change on this file since ee137aa was a55ef91, checked in by , 4 years ago | |
---|---|
|
|
File size: 314 bytes |
Rev | Line | |
---|---|---|
[37c8d1d] | 1 | using FarmatikoData.Models; |
[a55ef91] | 2 | using System.Linq; |
[37c8d1d] | 3 | |
4 | namespace FarmatikoData.FarmatikoRepoInterfaces | |
5 | { | |
6 | public interface IHealthFacilityRepository | |
7 | { | |
[a55ef91] | 8 | IQueryable<HealthFacilities> GetAll(); |
[37c8d1d] | 9 | void Add(HealthFacilities healthFacility); |
[a55ef91] | 10 | void Remove(HealthFacilities healthFacility); |
[37c8d1d] | 11 | } |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.