public WeatherForecastController(ILogger <WeatherForecastController> logger, IWeatherForecastServices service)
 {
     _logger  = logger;
     _service = service;
 }
Exemple #2
0
 public WeatherForecastController(ILogger <WeatherForecastController> logger, IWeatherForecastServices weatherForecastServices)
 {
     _logger = logger;
     WeatherForecastServices = weatherForecastServices;
 }
 public SampleDataController(IWeatherForecastServices weatherService)
 {
     _weatherService = weatherService;
 }