aboutsummaryrefslogtreecommitdiff
path: root/API/Controllers/WeatherForecastController.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2020-12-10 13:45:35 +0200
committertranstrike <transtrike@gmail.com>2020-12-10 13:45:35 +0200
commitf50957985300c3bfc6ae5564d7eaa67e099ca8f2 (patch)
treec604cb0fe583bd3f4d3ab25c8ce26a56a0df2332 /API/Controllers/WeatherForecastController.cs
parent2d1a5bdcafd30dca9d21ac765d9b5f6103129902 (diff)
downloadDevHive-f50957985300c3bfc6ae5564d7eaa67e099ca8f2.tar
DevHive-f50957985300c3bfc6ae5564d7eaa67e099ca8f2.tar.gz
DevHive-f50957985300c3bfc6ae5564d7eaa67e099ca8f2.zip
Change HTTP port
Diffstat (limited to 'API/Controllers/WeatherForecastController.cs')
-rw-r--r--API/Controllers/WeatherForecastController.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/API/Controllers/WeatherForecastController.cs b/API/Controllers/WeatherForecastController.cs
deleted file mode 100644
index a90538d..0000000
--- a/API/Controllers/WeatherForecastController.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.Extensions.Logging;
-
-namespace API.Controllers
-{
- [ApiController]
- [Route("[controller]")]
- public class WeatherForecastController : ControllerBase
- {
- private readonly ILogger<WeatherForecastController> _logger;
- private static readonly string[] Summaries = new[]
- {
- "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
- };
-
- public WeatherForecastController(ILogger<WeatherForecastController> logger)
- {
- _logger = logger;
- }
-
- [HttpGet]
- public IEnumerable<WeatherForecast> Get()
- {
- var rng = new Random();
- return Enumerable.Range(1, 5).Select(index => new WeatherForecast
- {
- Date = DateTime.Now.AddDays(index),
- TemperatureC = rng.Next(-20, 55),
- Summary = Summaries[rng.Next(Summaries.Length)]
- })
- .ToArray();
- }
- }
-}