public AuthorizationHander(IHttpContextAccessor httpContextAccessor, IAccountBusinessRepository accountBusinessRepository, UserManager userManager)
 {
     _httpContextAccessor       = httpContextAccessor;
     _accountBusinessRepository = accountBusinessRepository;
     _userManager = userManager;
 }
Esempio n. 2
0
 public AccountController(IAccountBusinessRepository accountBusinessRepository, IUserBusinessRepository userBusinessRepository, UserManager userManager)
 {
     this._accountBusinessRepository = accountBusinessRepository;
     this._userBusinessRepository    = userBusinessRepository;
     this._userManager = userManager;
 }