InsertUserProfile() public method

public InsertUserProfile ( User objUser ) : bool
objUser Pulsey.Core.Models.User
return bool
コード例 #1
0
ファイル: UserController.cs プロジェクト: vegashat/Pulsey
 public ActionResult UserProfile(User user)
 {
     var repo = new UserRepository();
     repo.InsertUserProfile(user);
     return View();
 }