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