public async Task <IActionResult> Edit(int id, [Bind("Id,Nome")] Fonte fonte) { if (id != fonte.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(fonte); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!FonteExists(fonte.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(fonte)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Nome,Email,Senha")] Usuario usuario) { if (id != usuario.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(usuario); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UsuarioExists(usuario.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Cadastro))); } return(View(usuario)); }
public void Edit(Registro obj) { _context.Update(obj); _context.SaveChanges(); }