Changeset d2e69be for FarmatikoServices


Ignore:
Timestamp:
07/27/20 17:10:07 (4 years ago)
Author:
DimitarSlezenkovski <dslezenkovski@…>
Branches:
master
Children:
ef1219a
Parents:
4b342bb
Message:

Add Route Attribute

Location:
FarmatikoServices
Files:
3 added
2 deleted
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • FarmatikoServices/FarmatikoServiceInterfaces/IHealthcareWorkerService.cs

    r4b342bb rd2e69be  
    11using FarmatikoData.Models;
    2 using System;
    32using System.Collections.Generic;
    4 using System.Text;
    53
    64namespace FarmatikoData.FarmatikoServiceInterfaces
    75{
    8     public interface IHealthcareWorkersService
     6    public interface IHealthcareWorkerService
    97    {
    108        IEnumerable<HealthcareWorkers> GetAll();
     
    1210        IEnumerable<HealthcareWorkers> GetAllByBranch(string Branch);
    1311        IEnumerable<HealthcareWorkers> GetAllByFacility(HealthFacilities Facility);
     12        void Add(HealthcareWorkers HealthcareWorker);
    1413    }
    1514}
  • FarmatikoServices/FarmatikoServices.csproj

    r4b342bb rd2e69be  
    66
    77  <ItemGroup>
     8    <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
     9  </ItemGroup>
     10
     11  <ItemGroup>
    812    <ProjectReference Include="..\FarmatikoData\FarmatikoData.csproj" />
    913  </ItemGroup>
Note: See TracChangeset for help on using the changeset viewer.