public async Task <IActionResult> Edit(int id, [Bind("Id,UserId,ProfileId,Message,SentDate")] UserMessage userMessage) { if (id != userMessage.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(userMessage); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserMessageExists(userMessage.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(userMessage)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name,EmailAddress,PhoneNumber,Gender,DateOfBirth,RegistrationDate,Password")] User user) { if (id != user.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(user); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserExists(user.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(user)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,UserId,ContactName,RelationShip,ContactNumber,ContactAddress")] UserContact userContact) { if (id != userContact.Id) { return(NotFound()); } if (ModelState.IsValid) { try { userContact.UserId = UserId; _context.Update(userContact); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserContactExists(userContact.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(userContact)); }