diff options
| author | transtrike <transtrike@gmail.com> | 2020-12-08 10:35:50 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2020-12-08 10:35:50 +0200 |
| commit | fa0b0e992d363f41bdb8cda00ef59c0142c97246 (patch) | |
| tree | dfa0ecaaf689670c75889de77320665ba7edead7 /API/Controllers/WeatherForecastController.cs | |
| parent | 648d50c387e7ee3976bd673594ed10901075475f (diff) | |
| download | DevHive-fa0b0e992d363f41bdb8cda00ef59c0142c97246.tar DevHive-fa0b0e992d363f41bdb8cda00ef59c0142c97246.tar.gz DevHive-fa0b0e992d363f41bdb8cda00ef59c0142c97246.zip | |
Added 3rd project and references
Diffstat (limited to 'API/Controllers/WeatherForecastController.cs')
| -rw-r--r-- | API/Controllers/WeatherForecastController.cs | 3 |
1 files changed, 1 insertions, 2 deletions
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<WeatherForecastController> _logger;
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};
- private readonly ILogger<WeatherForecastController> _logger;
-
public WeatherForecastController(ILogger<WeatherForecastController> logger)
{
_logger = logger;
|
