InsertUserProfile() public method

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