public async Task <IActionResult> Edit(int id, [Bind("Id,FullName,emailAddress,telefono,Especialidad,primeraPassword,segundaPassword")] TablaRegistroCuenta tablaRegistroCuenta) { if (id != tablaRegistroCuenta.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(tablaRegistroCuenta); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TablaRegistroCuentaExists(tablaRegistroCuenta.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(tablaRegistroCuenta)); }
public async Task <IActionResult> Create([Bind("Id,FullName,emailAddress,telefono,Especialidad,primeraPassword,segundaPassword")] TablaRegistroCuenta tablaRegistroCuenta) { if (ModelState.IsValid) { _context.Add(tablaRegistroCuenta); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(tablaRegistroCuenta)); }