Last change
on this file since 63d885e was c406ae5, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Update Models, Repos, Services and Controllers
|
-
Property mode
set to
100644
|
File size:
375 bytes
|
Line | |
---|
1 | using FarmatikoData.Models;
|
---|
2 | using System.Linq;
|
---|
3 |
|
---|
4 | namespace FarmatikoData.FarmatikoRepoInterfaces
|
---|
5 | {
|
---|
6 | public interface IHealthFacilityRepository
|
---|
7 | {
|
---|
8 | IQueryable<HealthFacilities> GetAll();
|
---|
9 | void Add(HealthFacilities healthFacility);
|
---|
10 | void Remove(HealthFacilities healthFacility);
|
---|
11 | IQueryable<HealthFacilities> GetByName(string Name);
|
---|
12 | }
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.