public bool InsertUserProfile(User objUser) { using (var context = new PulseyContext()) { context.Users.Add(objUser); context.SaveChanges(); } return true; }
public bool UpdateUserProfile(User objUser) { using (var context = new PulseyContext()) { context.Entry<User>(objUser).State = EntityState.Modified; context.SaveChanges(); } return true; }
public ActionResult UserProfile(User user) { var repo = new UserRepository(); repo.InsertUserProfile(user); return View(); }