public WeatherFacade(
     IGeolocationService geolocationService,
     IWeatherForecastService weatherForecastService,
     ITemperatureUnitConverter temperatureUnitConverter)
 {
     _geolocationService = geolocationService;
     _weatherForecastService = weatherForecastService;
     _temperatureUnitConverter = temperatureUnitConverter;
 }
 public WeatherFacade()
 {
     _geolocationService = new GeolocationService();
     _weatherForecastService = new WeatherForecastService();
     _temperatureUnitConverter = new TemperatureUnitConverter();
 }