diff options
| author | transtrike <transtrike@gmail.com> | 2020-12-10 13:45:35 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2020-12-10 13:45:35 +0200 |
| commit | f50957985300c3bfc6ae5564d7eaa67e099ca8f2 (patch) | |
| tree | c604cb0fe583bd3f4d3ab25c8ce26a56a0df2332 /API/Controllers | |
| parent | 2d1a5bdcafd30dca9d21ac765d9b5f6103129902 (diff) | |
| download | DevHive-f50957985300c3bfc6ae5564d7eaa67e099ca8f2.tar DevHive-f50957985300c3bfc6ae5564d7eaa67e099ca8f2.tar.gz DevHive-f50957985300c3bfc6ae5564d7eaa67e099ca8f2.zip | |
Change HTTP port
Diffstat (limited to 'API/Controllers')
| -rw-r--r-- | API/Controllers/ErrorController.cs | 13 | ||||
| -rw-r--r-- | API/Controllers/WeatherForecastController.cs | 37 |
2 files changed, 13 insertions, 37 deletions
diff --git a/API/Controllers/ErrorController.cs b/API/Controllers/ErrorController.cs new file mode 100644 index 0000000..4c5d9ef --- /dev/null +++ b/API/Controllers/ErrorController.cs @@ -0,0 +1,13 @@ +using System; + +namespace API.Controllers +{ + public class ErrorController + { + //FIXME: SHOULD NOT BE VOID + public void Error(Exception exception) + { + + } + } +}
\ No newline at end of file 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();
- }
- }
-}
|
