source: FarmatikoServices/FarmatikoServiceInterfaces/IHealthcareWorkerService.cs@ d2e69be

Last change on this file since d2e69be was d2e69be, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Add Route Attribute

  • Property mode set to 100644
File size: 486 bytes
Line 
1using FarmatikoData.Models;
2using System.Collections.Generic;
3
4namespace 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.