public async Task <IActionResult> PutProductosTienda(int id, ProductosTienda productosTienda) { if (id != productosTienda.IdProducto) { return(BadRequest()); } _context.Entry(productosTienda).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductosTiendaExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutNegocios([FromRoute] int id, [FromBody] Negocios negocios) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != negocios.IdNegocio) { return(BadRequest()); } _context.Entry(negocios).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!NegociosExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }