public async Task <IActionResult> PutMarca(int id, Marca marca) { if (id != marca.ID) { return(BadRequest()); } _context.Entry(marca).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MarcaExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutProducto(int id, Producto producto) { if (VerificarPrecioMayorCosto(producto.Precio, producto.Costo)) { ObjectResult o = new ObjectResult("El precio es mayor que el costo"); o.StatusCode = 500; return(o); } if (id != producto.id) { return(BadRequest()); } _context.Entry(producto).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductoExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }