public JsonResult Update(string name, DateTime startDate, DateTime endDate, string description, int officeID, int eventID, int conventionID, string city)
 {
     var eventManager = new DataAccess.EventManager();
     return Json(eventManager.Update(name, startDate, endDate, description, officeID, eventID, conventionID, city));
 }