public async Task <IActionResult> PutEditora(int id, Editora editora) { if (id != editora.Id) { return(BadRequest()); } _context.Entry(editora).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EditoraExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutLivro(int id, Livro livro) { if (id != livro.Id) { return(BadRequest()); } _context.Entry(livro).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!LivroExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }