Example #1
0
        public object GetWeather(string country, string city)
        {
            string imode = "";
            string ijson = _weatherHandler.GetWeatherJSON(country, city, out imode);

            return(new { mode = imode, json = ijson });
        }