public IHttpActionResult GetWeather(string city)
        {
            string appid = "1bb6ee2cddff58ee3da8c24b28824471";
            string type  = "weather";

            WeatherForecast wf = new WeatherForecast();

            StringBuilder sb = new StringBuilder();

            for (int i = 0; i < wf.GetWeatherForOneDay(city, appid, type).Count; i++)
            {
                sb.Append(" DateTime - " + wf.GetWeatherForOneDay(city, appid, type)[i++]);
                sb.Append(" Temp Max - " + wf.GetWeatherForOneDay(city, appid, type)[i++]);
                sb.Append(" Temp Min - " + wf.GetWeatherForOneDay(city, appid, type)[i++]);
                sb.Append(" Speed - " + wf.GetWeatherForOneDay(city, appid, type)[i++]);
                sb.Append(" Weather - " + wf.GetWeatherForOneDay(city, appid, type)[i++]);
            }

            return(Ok(sb.ToString().Replace('"', ' ')));
        }