public async Task <IActionResult> Edit(int id, [Bind("Id,Prazo")] Trilha trilha) { if (id != trilha.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(trilha); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TrilhaExists(trilha.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(trilha)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Cargo,Departamento,Name")] Colaborador colaborador) { if (id != colaborador.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(colaborador); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ColaboradorExists(colaborador.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(colaborador)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Tipo,Nome")] Habilidade habilidade) { if (id != habilidade.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(habilidade); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!HabilidadeExists(habilidade.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(habilidade)); }