Ejemplo n.º 1
0
 // GET: EventDetailStatus/Delete/5
 public ActionResult Delete(int EventDStatusid)
 {
     try
     {
         EventDetailStatus sdb = new EventDetailStatus();
         if (sdb.DeleteEventDetailstatus(EventDStatusid))
         {
             ViewBag.AlertMsg = "Event Deleted Successfully";
         }
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }