public void GivenICallOpenWeatherApiWithLatitudeAndLongitude(Decimal Latitude, Decimal Longitude)
        {
            this.Latitude  = Latitude.ToString();
            this.Longitude = Longitude.ToString();
            //
            weatherApi = new ClientInterface();
            WeatherResponseModel response = weatherApi.GetCurrentWeather(this.Latitude, this.Longitude);

            WeatherApiTemp = Convert.ToInt32(response.current.temp);
        }