コード例 #1
0
        public ActionResult Delete(int id)
        {
            Weather weather = service.GetWeatherByID(id);

            service.Delete(weather);
            return(RedirectToAction("Index"));
        }