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