예제 #1
0
        public ActionResult Forecast(string id)
        {
            List <Weather> weather = new List <Weather>();

            weather = weatherDal.GetWeathers(id);
            return(View("Forecast", weather));
        }