Line | |
---|
1 | using FarmatikoData.Models;
|
---|
2 | using System;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace FarmatikoData.FarmatikoServiceInterfaces
|
---|
7 | {
|
---|
8 | public interface IHealthcareWorkersService
|
---|
9 | {
|
---|
10 | IEnumerable<HealthcareWorkers> GetAll();
|
---|
11 | HealthcareWorkers GetByName(string Name);
|
---|
12 | IEnumerable<HealthcareWorkers> GetAllByBranch(string Branch);
|
---|
13 | IEnumerable<HealthcareWorkers> GetAllByFacility(HealthFacilities Facility);
|
---|
14 | }
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.