Last change
on this file since ef1219a was d2e69be, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Add Route Attribute
|
-
Property mode
set to
100644
|
File size:
486 bytes
|
Line | |
---|
1 | using FarmatikoData.Models;
|
---|
2 | using System.Collections.Generic;
|
---|
3 |
|
---|
4 | namespace FarmatikoData.FarmatikoServiceInterfaces
|
---|
5 | {
|
---|
6 | public interface IHealthcareWorkerService
|
---|
7 | {
|
---|
8 | IEnumerable<HealthcareWorkers> GetAll();
|
---|
9 | HealthcareWorkers GetByName(string Name);
|
---|
10 | IEnumerable<HealthcareWorkers> GetAllByBranch(string Branch);
|
---|
11 | IEnumerable<HealthcareWorkers> GetAllByFacility(HealthFacilities Facility);
|
---|
12 | void Add(HealthcareWorkers HealthcareWorker);
|
---|
13 | }
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.