public async Task <ActionResult> Get(int id) { var results = await _repository.AllGPsOfSeason(id); if (results.Any()) { return(Ok(results)); } return(NotFound()); }