source: Farmatiko/Controllers/HealthFacilitiesController.cs@ c406ae5

Last change on this file since c406ae5 was c406ae5, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Update Models, Repos, Services and Controllers

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[d2e69be]1using FarmatikoData;
2using FarmatikoData.Models;
[a55ef91]3using FarmatikoServices.FarmatikoServiceInterfaces;
[d2e69be]4using Microsoft.AspNetCore.Mvc;
[a55ef91]5using Microsoft.Extensions.Logging;
6using Newtonsoft.Json;
7using Newtonsoft.Json.Linq;
8using System;
[d2e69be]9using System.Collections.Generic;
[a55ef91]10using System.Linq;
11using System.Net;
12using System.Threading.Tasks;
[d2e69be]13
14namespace Farmatiko.Controllers
15{
16 [ApiController]
17 [Route("[controller]/[action]")]
18 public class HealthFacilitiesController : Controller
19 {
20 private IHealthFacilityService _healthFacilitiesService;
[a55ef91]21 private IProcessJSONService _processJSONService;
22 public HealthFacilitiesController(IHealthFacilityService healthFacilitiesService, IProcessJSONService processJSONService)
[d2e69be]23 {
24 _healthFacilitiesService = healthFacilitiesService;
[a55ef91]25 _processJSONService = processJSONService;
[d2e69be]26 }
27 [HttpGet]
[c406ae5]28 public Task<IQueryable<HealthFacilities>> Get()
[d2e69be]29 {
30 return _healthFacilitiesService.GetAll();
31 }
[c73269d]32 public void Index()
[a55ef91]33 {
34 _processJSONService.GetProcessedHealthFacilitiesFromJSON();
[c73269d]35 }
[d2e69be]36 }
37}
Note: See TracBrowser for help on using the repository browser.