Last change
on this file since e42f61a was e42f61a, checked in by DimitarSlezenkovski <dslezenkovski@…>, 5 years ago |
Add more services
|
-
Property mode
set to
100644
|
File size:
372 bytes
|
Rev | Line | |
---|
[37c8d1d] | 1 | using FarmatikoData.Models;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Collections.Generic;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace FarmatikoData.FarmatikoRepoInterfaces
|
---|
| 7 | {
|
---|
[e42f61a] | 8 | public interface IHealthcareWorkerRepository
|
---|
[37c8d1d] | 9 | {
|
---|
| 10 | IEnumerable<HealthcareWorkers> GetAll();
|
---|
| 11 | void Add(HealthcareWorkers HealthcareWorker);
|
---|
[e42f61a] | 12 | void Remove(HealthcareWorkers healthcareWorker);
|
---|
[37c8d1d] | 13 | }
|
---|
| 14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.