Last change
on this file since d2e69be was d2e69be, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Add Route Attribute
|
-
Property mode
set to
100644
|
File size:
406 bytes
|
Line | |
---|
1 | using FarmatikoData.Models;
|
---|
2 | using System;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace FarmatikoData
|
---|
7 | {
|
---|
8 | public interface IHealthFacilityService
|
---|
9 | {
|
---|
10 | IEnumerable<HealthFacilities> GetByName(string name);
|
---|
11 | IEnumerable<HealthFacilities> GetAll();
|
---|
12 | IEnumerable<HealthFacilities> GetByType(string Type);
|
---|
13 | void Add(HealthFacilities healthFacility);
|
---|
14 | }
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.