source: FarmatikoData/FarmatikoRepoInterfaces/IHealthFacilityRepository.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: 467 bytes
RevLine 
[37c8d1d]1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Text;
5
6namespace FarmatikoData.FarmatikoRepoInterfaces
7{
8 public interface IHealthFacilityRepository
9 {
10 IEnumerable<HealthFacilities> GetAll();
11 HealthFacilities GetByFullName(string FullName);
12 HealthFacilities GetByType(string FacilityType);
13 void Add(HealthFacilities healthFacility);
14 void Remove(string healthFacility);
15 }
16}
Note: See TracBrowser for help on using the repository browser.