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