source: FarmatikoServices/FarmatikoServiceInterfaces/IHealthcareWorkersService.cs@ 785b8bd

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

Add FarmatikoRepository and FarmatikoServices

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