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