public async Task <IActionResult> Edit(int id, [Bind("Id,CodigoCargo,NombreCargo")] MantenimientoCargo mantenimientoCargo) { if (id != mantenimientoCargo.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(mantenimientoCargo); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MantenimientoCargoExists(mantenimientoCargo.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(mantenimientoCargo)); }
public async Task <IActionResult> Edit(int id, [Bind("Empleado,TipoDeSalida,Motivo,Fecha,Id")] ProcessSalidaEmpleado processSalidaEmpleado) { if (id != processSalidaEmpleado.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(processSalidaEmpleado); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProcessSalidaEmpleadoExists(processSalidaEmpleado.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(processSalidaEmpleado)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,CodigoEmpleado,Nombre,Apellido,Telefono,Departamento,FechaIngreso,Salario,Estatus,Cargo")] MantenimientoEmpleado mantenimientoEmpleado) { if (id != mantenimientoEmpleado.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(mantenimientoEmpleado); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MantenimientoEmpleadoExists(mantenimientoEmpleado.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(mantenimientoEmpleado)); }