예제 #1
0
 public ActionResult Delete(int id, Cinema cinema)
 {
     try
     {
         cinema = cinemaService.GetCinema(id);
         cinemaService.Delete(id);
         return(RedirectToAction("Index"));
     }
     catch (DataException)
     {
         ModelState.AddModelError("", "Không thể xóa rạp chiếu");
     }
     return(View(cinema));
 }