public async Task <IActionResult> PutItemViagem([FromRoute] int id, [FromBody] ItemViagem itemViagem) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != itemViagem.ItemViagemId) { return(BadRequest()); } _context.Entry(itemViagem).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ItemViagemExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutProduto([FromRoute] int id, [FromBody] Produto produto) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != produto.ProdutoId) { return(BadRequest()); } _context.Entry(produto).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProdutoExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutContainer([FromRoute] int id, [FromBody] Container container) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != container.ContainerId) { return(BadRequest()); } container.DtAtualizacao = DateTime.Now; _context.Entry(container).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ContainerExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }