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