public Weather GetWeatherForZip(string zipCode)
        {
            if (zipCode == "00000")
            {
                throw new ArgumentException("Foo");
            }
            var request = _httpHelper.GetRestRequest($"CurrentWeather/{zipCode}", RestSharp.Method.GET);

            var weather = _httpHelper.Execute <Weather>(request);

            return(weather);
        }