Changeset e42f61a for FarmatikoServices/FarmatikoServiceInterfaces
- Timestamp:
- 07/29/20 13:21:48 (4 years ago)
- Branches:
- master
- Children:
- de18858
- Parents:
- ef1219a
- Location:
- FarmatikoServices/FarmatikoServiceInterfaces
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoServices/FarmatikoServiceInterfaces/IHealthFacilityService.cs
ref1219a re42f61a 8 8 public interface IHealthFacilityService 9 9 { 10 IEnumerable<HealthFacilities> GetByName(string name);11 10 IEnumerable<HealthFacilities> GetAll(); 12 IEnumerable<HealthFacilities> GetByType(string Type);13 11 void Add(HealthFacilities healthFacility); 14 12 } -
FarmatikoServices/FarmatikoServiceInterfaces/IHealthcareWorkerService.cs
ref1219a re42f61a 1 1 using FarmatikoData.Models; 2 using System; 2 3 using System.Collections.Generic; 4 using System.Text; 3 5 4 namespace Farmatiko Data.FarmatikoServiceInterfaces6 namespace FarmatikoServices.FarmatikoServiceInterfaces 5 7 { 6 8 public interface IHealthcareWorkerService 7 9 { 8 10 IEnumerable<HealthcareWorkers> GetAll(); 9 HealthcareWorkers GetByName(string Name); 10 IEnumerable<HealthcareWorkers> GetAllByBranch(string Branch); 11 IEnumerable<HealthcareWorkers> GetAllByFacility(HealthFacilities Facility); 12 void Add(HealthcareWorkers HealthcareWorker); 11 void Add(HealthcareWorkers healthcareWorker); 12 //Not needed 13 /*void Remove(HealthcareWorkers healthcareWorker);*/ 13 14 } 14 15 }
Note:
See TracChangeset
for help on using the changeset viewer.