From 19c31a112bd40c9c2401b252b61feb0fb4928da9 Mon Sep 17 00:00:00 2001 From: Maxence LANONE Date: Mon, 27 Mar 2023 00:14:13 +0200 Subject: [PATCH] Supprimer 'Sources/WebApiLol/Controllers/WeatherForecastController.cs' --- .../Controllers/WeatherForecastController.cs | 33 ------------------- 1 file changed, 33 deletions(-) delete mode 100644 Sources/WebApiLol/Controllers/WeatherForecastController.cs diff --git a/Sources/WebApiLol/Controllers/WeatherForecastController.cs b/Sources/WebApiLol/Controllers/WeatherForecastController.cs deleted file mode 100644 index 0e39eb8..0000000 --- a/Sources/WebApiLol/Controllers/WeatherForecastController.cs +++ /dev/null @@ -1,33 +0,0 @@ -//using Microsoft.AspNetCore.Mvc; - -//namespace WebApiLol.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 = DateOnly.FromDateTime(DateTime.Now.AddDays(index)), -// TemperatureC = Random.Shared.Next(-20, 55), -// Summary = Summaries[Random.Shared.Next(Summaries.Length)] -// }) -// .ToArray(); -// } -//} -