public async Task <TEntity> UpdateAsync(TEntity entity) { if (entity == null) { throw new ArgumentNullException($"{nameof(AddAsync)} entity must not be null"); } try { RepositoryPatternDemoContext.Update(entity); await RepositoryPatternDemoContext.SaveChangesAsync(); return(entity); } catch (Exception ex) { throw new Exception($"{nameof(entity)} could not be updated: {ex.Message}"); } }
public async Task UpdateAsync(Manutencao manutencao) { var hasAny = await _context.Manutencao.AnyAsync(s => s.Id == manutencao.Id); if (!hasAny) { throw new NotFoundException("Id not found"); } try { _context.Update(manutencao); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException e) { throw new DbConcurrencyException(e.Message); } }