Changeset d2e69be for FarmatikoServices/FarmatikoServiceInterfaces
- Timestamp:
- 07/27/20 17:10:07 (4 years ago)
- Branches:
- master
- Children:
- ef1219a
- Parents:
- 4b342bb
- Location:
- FarmatikoServices/FarmatikoServiceInterfaces
- Files:
-
- 1 added
- 1 deleted
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoServices/FarmatikoServiceInterfaces/IHealthcareWorkerService.cs
r4b342bb rd2e69be 1 1 using FarmatikoData.Models; 2 using System;3 2 using System.Collections.Generic; 4 using System.Text;5 3 6 4 namespace FarmatikoData.FarmatikoServiceInterfaces 7 5 { 8 public interface IHealthcareWorker sService6 public interface IHealthcareWorkerService 9 7 { 10 8 IEnumerable<HealthcareWorkers> GetAll(); … … 12 10 IEnumerable<HealthcareWorkers> GetAllByBranch(string Branch); 13 11 IEnumerable<HealthcareWorkers> GetAllByFacility(HealthFacilities Facility); 12 void Add(HealthcareWorkers HealthcareWorker); 14 13 } 15 14 }
Note:
See TracChangeset
for help on using the changeset viewer.