public WeatherDataService(IGetLocationQuery locationQuery, IGetWeatherQuery weatherQuery)
 {
     this.locationQuery = locationQuery;
     this.weatherQuery  = weatherQuery;
 }
 public WeatherDataService()
 {
     this.locationQuery = new GetLocationQuery();
     this.weatherQuery  = new GetWeatherQuery();
 }