/// <summary>
        /// Getting weather Information
        /// </summary>
        /// <param name="city"></param>
        /// <returns></returns>
        public ActionResult GetWeather(string city)
        {
            WeatherDetails weatherDetails = new WeatherDetails();
            WeatherModel   weatherModel   = weatherDetails.GetWeather(city);

            return(PartialView("Weather", weatherModel));
        }