Changeset 63d885e for Farmatiko/Controllers/HealthcareWorkerController.cs
- Timestamp:
- 08/07/20 11:01:25 (5 years ago)
- Branches:
- master
- Children:
- 5d02859
- Parents:
- ee137aa (diff), c406ae5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/Controllers/HealthcareWorkerController.cs
ree137aa r63d885e 1 1 using System.Linq; 2 using System.Threading.Tasks; 2 3 using FarmatikoData.Models; 3 4 using FarmatikoServices.FarmatikoServiceInterfaces; … … 17 18 18 19 [HttpGet] 19 public IQueryable<HealthcareWorkers> Get()20 public Task<IQueryable<HealthcareWorkers>> Get() 20 21 { 21 22 return _healthcareWorkerService.GetAll();
Note:
See TracChangeset
for help on using the changeset viewer.