diff --git a/Api/Controllers/WeatherForecastController.cs b/Api/Controllers/WeatherForecastController.cs deleted file mode 100644 index b9e1680..0000000 --- a/Api/Controllers/WeatherForecastController.cs +++ /dev/null @@ -1,37 +0,0 @@ -using Microsoft.AspNetCore.Authorization; -using Microsoft.AspNetCore.Mvc; -using Microsoft.Identity.Web.Resource; - -namespace Api.Controllers -{ - //[Authorize] - [ApiController] - [Route("[controller]")] - //[RequiredScope(RequiredScopesConfigurationKey = "AzureAd:Scopes")] - 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(); - } - } -} diff --git a/Api/WeatherForecast.cs b/Api/WeatherForecast.cs deleted file mode 100644 index cc42c03..0000000 --- a/Api/WeatherForecast.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace Api -{ - public class WeatherForecast - { - public DateOnly Date { get; set; } - - public int TemperatureC { get; set; } - - public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); - - public string? Summary { get; set; } - } -}