Changeset d2e69be for FarmatikoServices
- Timestamp:
- 07/27/20 17:10:07 (4 years ago)
- Branches:
- master
- Children:
- ef1219a
- Parents:
- 4b342bb
- Location:
- FarmatikoServices
- Files:
-
- 3 added
- 2 deleted
- 1 edited
- 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 } -
FarmatikoServices/FarmatikoServices.csproj
r4b342bb rd2e69be 6 6 7 7 <ItemGroup> 8 <PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> 9 </ItemGroup> 10 11 <ItemGroup> 8 12 <ProjectReference Include="..\FarmatikoData\FarmatikoData.csproj" /> 9 13 </ItemGroup>
Note:
See TracChangeset
for help on using the changeset viewer.