public List <Event> GetAllEvents() { return(_eventRepo.GetAllEvents()); }
public async Task <IActionResult> GetEvents() { var data = await reo.GetAllEvents(); return(Json(data)); }