コード例 #1
0
 public AuthorizationHander(IHttpContextAccessor httpContextAccessor, IAccountBusinessRepository accountBusinessRepository, UserManager userManager)
 {
     _httpContextAccessor       = httpContextAccessor;
     _accountBusinessRepository = accountBusinessRepository;
     _userManager = userManager;
 }
コード例 #2
0
 public AccountController(IAccountBusinessRepository accountBusinessRepository, IUserBusinessRepository userBusinessRepository, UserManager userManager)
 {
     this._accountBusinessRepository = accountBusinessRepository;
     this._userBusinessRepository    = userBusinessRepository;
     this._userManager = userManager;
 }