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 | {
|
---|
| 8 | public interface IHealthcareWorkersRepository
|
---|
| 9 | {
|
---|
| 10 | IEnumerable<HealthcareWorkers> GetAll();
|
---|
| 11 | HealthcareWorkers GetByName(string Name);
|
---|
| 12 | ICollection<HealthcareWorkers> GetByBranch(string Branch);
|
---|
| 13 | ICollection<HealthcareWorkers> GetByFacility(HealthFacilities HealthFacility);
|
---|
| 14 | void Add(HealthcareWorkers HealthcareWorker);
|
---|
| 15 |
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.