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