From ad998e04990be8440978a2b25951dad81bf663f6 Mon Sep 17 00:00:00 2001 From: Semikolon Date: Wed, 7 Jun 2023 14:46:17 +0200 Subject: [PATCH] remove example controller --- .../Controllers/WeatherForecastController.cs | 33 ------------------- AB-API/WeatherForecast.cs | 13 -------- 2 files changed, 46 deletions(-) delete mode 100644 AB-API/Controllers/WeatherForecastController.cs delete mode 100644 AB-API/WeatherForecast.cs diff --git a/AB-API/Controllers/WeatherForecastController.cs b/AB-API/Controllers/WeatherForecastController.cs deleted file mode 100644 index 4119bef..0000000 --- a/AB-API/Controllers/WeatherForecastController.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Microsoft.AspNetCore.Mvc; - -namespace AB_API.Controllers -{ - [ApiController] - [Route("[controller]")] - public class WeatherForecastController : ControllerBase - { - private static readonly string[] Summaries = new[] - { - "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" - }; - - private readonly ILogger _logger; - - public WeatherForecastController(ILogger logger) - { - _logger = logger; - } - - [HttpGet(Name = "GetWeatherForecast")] - public IEnumerable Get() - { - return Enumerable.Range(1, 5).Select(index => new WeatherForecast - { - Date = DateTime.Now.AddDays(index), - TemperatureC = Random.Shared.Next(-20, 55), - Summary = Summaries[Random.Shared.Next(Summaries.Length)] - }) - .ToArray(); - } - } -} \ No newline at end of file diff --git a/AB-API/WeatherForecast.cs b/AB-API/WeatherForecast.cs deleted file mode 100644 index 117f86d..0000000 --- a/AB-API/WeatherForecast.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace AB_API -{ - public class WeatherForecast - { - public DateTime Date { get; set; } - - public int TemperatureC { get; set; } - - public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); - - public string? Summary { get; set; } - } -} \ No newline at end of file