public WeatherController( IWeatherConditionService weatherConditionService, IConfiguration configuration ) { _weatherConditionService = weatherConditionService; _configuration = configuration; }
public ClimaController(IWeatherConditionService service) { this.service = service; }
public WeatherConditionController(IWeatherConditionService weatherConditionService) : base(weatherConditionService) { this.weatherConditionService = weatherConditionService; }