public async Task <IActionResult> Edit(int id, [Bind("Id,Nombre,RazonSocial,Direccion,RFC,Telefono,Correo,RequiereFactura")] Cliente cliente) { if (id != cliente.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(cliente); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ClienteExists(cliente.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(cliente)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Descripcion,Precio,UnidadDeMedida")] Producto producto) { if (id != producto.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(producto); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductoExists(producto.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(producto)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,ClineteId,FechaPedido")] Pedido pedido) { if (id != pedido.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(pedido); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PedidoExists(pedido.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(pedido)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Nombre,Precio,Desperdicio")] Moldura moldura) { if (id != moldura.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(moldura); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MolduraExists(moldura.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(moldura)); }