public async Task <IActionResult> PutClientes([FromRoute] int id, [FromBody] Clientes clientes) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != clientes.IdClientes) { return(BadRequest()); } _context.Entry(clientes).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ClientesExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutDetallepedido([FromRoute] int id, [FromBody] Detallepedido detallepedido) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != detallepedido.IdDetallePedido) { return(BadRequest()); } _context.Entry(detallepedido).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DetallepedidoExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }