InsertUserProfile() public method

public InsertUserProfile ( User objUser ) : bool
objUser Pulsey.Core.Models.User
return bool
示例#1
0
 public ActionResult UserProfile(User user)
 {
     var repo = new UserRepository();
     repo.InsertUserProfile(user);
     return View();
 }