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