public async Task <IActionResult> Edit(int id, [Bind("Id,NombrePais,Description")] Pais pais) { if (id != pais.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(pais); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PaisExists(pais.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(pais)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Descripcion")] CategoriaProducto categoriaProducto) { if (id != categoriaProducto.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(categoriaProducto); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CategoriaProductoExists(categoriaProducto.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(categoriaProducto)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,IdVenta,IdProducto,Cantidad")] VentaDetalle ventaDetalle) { if (id != ventaDetalle.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(ventaDetalle); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VentaDetalleExists(ventaDetalle.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(ventaDetalle)); }
public async Task <IActionResult> Edit(int id, [Bind("Mail,Id,Nombre,Apellido,FechaNacimiento,Telefono,Pais")] 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,Apellido,Nombre,FechaNacimiento")] Persona persona) { if (id != persona.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(persona); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PersonaExists(persona.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(persona)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Fecha,IdCliente,Observaciones")] Venta venta) { if (id != venta.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(venta); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VentaExists(venta.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(venta)); }
public async Task <IActionResult> Edit(int id, [Bind("Legajo,Id,Nombre,Apellido,FechaNacimiento,Telefono")] Vendedor vendedor) { if (id != vendedor.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(vendedor); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VendedorExists(vendedor.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(vendedor)); }