Ejemplo n.º 1
0
 /// <summary>
 /// Action TO Delete The Hotel By Given Id
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public ActionResult DeleteHotel(int id)
 {
     hotelManager.Delete(id);
     return(RedirectToAction("Index"));
 }