public IActionResult Get(int id) { IActionResult ret = null; var sportEvent = _repository.GetEvent(id); ret = Ok(sportEvent); return(ret); }