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
RevLine 
[37c8d1d]1using FarmatikoData.Models;
2using System.Collections.Generic;
3
4namespace FarmatikoData.FarmatikoServiceInterfaces
5{
[d2e69be]6 public interface IHealthcareWorkerService
[37c8d1d]7 {
8 IEnumerable<HealthcareWorkers> GetAll();
9 HealthcareWorkers GetByName(string Name);
10 IEnumerable<HealthcareWorkers> GetAllByBranch(string Branch);
11 IEnumerable<HealthcareWorkers> GetAllByFacility(HealthFacilities Facility);
[d2e69be]12 void Add(HealthcareWorkers HealthcareWorker);
[37c8d1d]13 }
14}
Note: See TracBrowser for help on using the repository browser.