public async Task <IActionResult> Edit(int id, [Bind("AvionesID,Modelos,Eye,Capacity")] Aviones aviones) { if (id != aviones.AvionesID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(aviones); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AvionesExists(aviones.AvionesID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(aviones)); }
public async Task <IActionResult> Edit(int id, [Bind("EmpleadoID,Name,Last_Name,TypeEmpleadoID")] Empleado empleado) { if (id != empleado.EmpleadoID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(empleado); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EmpleadoExists(empleado.EmpleadoID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["TypeEmpleadoID"] = new SelectList(_context.TypeEmpleado, "TypeEmpleadoID", "Name", empleado.TypeEmpleadoID); return(View(empleado)); }
public async Task <IActionResult> Edit(int id, [Bind("VuelosID,Cinty,Fecha,Aerolinea")] Vuelos vuelos) { if (id != vuelos.VuelosID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(vuelos); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VuelosExists(vuelos.VuelosID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(vuelos)); }
public async Task <IActionResult> Edit(int id, [Bind("TypeEmpleadoID,Name")] TypeEmpleado typeEmpleado) { if (id != typeEmpleado.TypeEmpleadoID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(typeEmpleado); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TypeEmpleadoExists(typeEmpleado.TypeEmpleadoID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(typeEmpleado)); }