public Award Find(int?id) { if (!id.HasValue) { return(null); } return(_awardRepository.Find(id.Value)); }