public async Task <IActionResult> Edit(int id, [Bind("Id,Nombre,Direccion,Telefono,CiudadID,Estado")] UnidadResidencial unidadResidencial) { if (id != unidadResidencial.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(unidadResidencial); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UnidadResidencialExists(unidadResidencial.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["CiudadID"] = new SelectList(_context.Ciudad, "Id", "Id", unidadResidencial.CiudadID); return(View(unidadResidencial)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Nombre,Estado,DepartamentoID")] Ciudad ciudad) { if (id != ciudad.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(ciudad); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CiudadExists(ciudad.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["DepartamentoID"] = new SelectList(_context.Departamento, "Id", "Id", ciudad.DepartamentoID); return(View(ciudad)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Numero,Piso,Bloque,UnidadResidencialId,Estado")] Apartamento apartamento) { if (id != apartamento.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(apartamento); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ApartamentoExists(apartamento.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["UnidadResidencialId"] = new SelectList(_context.UnidadResidencial, "Id", "Id", apartamento.UnidadResidencialId); return(View(apartamento)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,MercadoId,ProductoId,Cantidad")] Compra compra) { if (id != compra.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(compra); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CompraExists(compra.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["MercadoId"] = new SelectList(_context.Mercado, "Id", "Id", compra.MercadoId); ViewData["ProductoId"] = new SelectList(_context.Producto, "Id", "Id", compra.ProductoId); return(View(compra)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Nombre,UnidadMedida,Estado")] 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,Nombre,Apellido,Telefono,ApartamentoID")] Propietario propietario) { if (id != propietario.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(propietario); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PropietarioExists(propietario.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["ApartamentoID"] = new SelectList(_context.Apartamento, "Id", "Id", propietario.ApartamentoID); return(View(propietario)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,FechaCreacion,PropietarioId,Estado")] Mercao mercao) { if (id != mercao.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(mercao); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MercaoExists(mercao.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["PropietarioId"] = new SelectList(_context.Propietario, "Id", "Id", mercao.PropietarioId); return(View(mercao)); }