public ActionResult Update(User user) { var userData = UserMapper.Map(user); userRepository.Update(userData); return RedirectToRoute("NoteList"); }
public UserModel(User User, IList<Note> Notes, IList<Comment> Comments) { this.User = User; this.Notes = Notes; this.Comments = Comments; }