예제 #1
0
 public IEnumerable <ErrorPoco> FindErrorItems(string search)
 {
     return(_repo.FindErrorItems(search).Select(GetErrorItemPoco));
 }
예제 #2
0
 public async Task <IEnumerable <ErrorPoco> > FindErrorItems(string search)
 {
     return((await _repo.FindErrorItems(search)).Select(GetErrorItemPoco));
 }