source: FarmatikoData/FarmatikoRepoInterfaces/IHealthFacilityRepository.cs@ ef1219a

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

Add Route Attribute

  • Property mode set to 100644
File size: 436 bytes
Line 
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 IEnumerable<HealthFacilities> GetByType(string Type);
12 void Add(HealthFacilities healthFacility);
13 IEnumerable<HealthFacilities> GetAllByName(string Name);
14 }
15}
Note: See TracBrowser for help on using the repository browser.