source: FarmatikoData/FarmatikoRepoInterfaces/IHealthcareWorkersRepository.cs@ de2baac

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

Add FarmatikoRepository and FarmatikoServices

  • Property mode set to 100644
File size: 521 bytes
Line 
1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Text;
5
6namespace FarmatikoData.FarmatikoRepoInterfaces
7{
8 public interface IHealthcareWorkersRepository
9 {
10 IEnumerable<HealthcareWorkers> GetAll();
11 HealthcareWorkers GetByName(string Name);
12 ICollection<HealthcareWorkers> GetByBranch(string Branch);
13 ICollection<HealthcareWorkers> GetByFacility(HealthFacilities HealthFacility);
14 void Add(HealthcareWorkers HealthcareWorker);
15
16 }
17}
Note: See TracBrowser for help on using the repository browser.