public async Task <IActionResult> GetFootballEvents() { try { return(Ok(_footballRepository.Get())); } catch (Exception ex) { return(Ok(ex)); } }