コード例 #1
0
ファイル: FooterService.cs プロジェクト: war-man/TheShoes
 public Footer GetById(int id)
 {
     return(_footerRepository.GetSingleById(id));
 }
コード例 #2
0
ファイル: FooterService.cs プロジェクト: haobh/Recruiment
 public async Task <Footer> GetById(string id)
 {
     return(await Task.FromResult(_footerRepository.GetSingleById(id)));
 }