public IActionResult Delete(int?id)
 {
     eventClient.DeleteEventById(id);
     return(RedirectToAction("Index"));
 }