public async Task <Account> Update(int id, Account entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }
Exemple #2
0
 public async Task <T> Update(int id, T entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }