source: FarmatikoData/FarmatikoRepoInterfaces/IHealthFacilityRepository.cs@ d8fafb8

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

Update & add service

  • Property mode set to 100644
File size: 314 bytes
Line 
1using FarmatikoData.Models;
2using System.Linq;
3
4namespace FarmatikoData.FarmatikoRepoInterfaces
5{
6 public interface IHealthFacilityRepository
7 {
8 IQueryable<HealthFacilities> GetAll();
9 void Add(HealthFacilities healthFacility);
10 void Remove(HealthFacilities healthFacility);
11 }
12}
Note: See TracBrowser for help on using the repository browser.