From fa0b0e992d363f41bdb8cda00ef59c0142c97246 Mon Sep 17 00:00:00 2001 From: transtrike Date: Tue, 8 Dec 2020 10:35:50 +0200 Subject: Added 3rd project and references --- API/Controllers/WeatherForecastController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'API/Controllers') diff --git a/API/Controllers/WeatherForecastController.cs b/API/Controllers/WeatherForecastController.cs index 2e4b29d..a90538d 100644 --- a/API/Controllers/WeatherForecastController.cs +++ b/API/Controllers/WeatherForecastController.cs @@ -10,13 +10,12 @@ namespace API.Controllers [Route("[controller]")] public class WeatherForecastController : ControllerBase { + private readonly ILogger _logger; 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; -- cgit v1.2.3