Ejemplo n.º 1
0
 public ActionResult DeleteEvent(Guid id, IFormCollection collection)
 {
     try
     {
         eventServices.deleteEvent(id);
         return(RedirectToAction(nameof(Index)));
     }
     catch
     {
         return(View());
     }
 }