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