public async Task <IActionResult> Get(int id) { var award = await _repo.GetAward(id); if (award == null) { return(NotFound()); } return(Ok(award)); }