コード例 #1
0
 public AccountController(IUserProfileDbWrapper userProfileDbWrapper, IAuthenticationHelper authenticationHelper)
 {
     _userProfileDbWrapper = userProfileDbWrapper;
     _authenticationHelper = authenticationHelper;
 }
コード例 #2
0
 public AccountController()
 {
     _userProfileDbWrapper = new UserProfileDbWrapper();
     _authenticationHelper = new AuthenticationHelper();
 }