Exemplo n.º 1
0
 public JwtTokenBl(IUserRefreshTokenRepository <UserRefreshToken, int> refreshRepository, IUserBl userBl, IAccountBl accountBl, IConfiguration configuration)
 {
     this.refreshRepository = refreshRepository;
     this.userBl            = userBl;
     this.accountBl         = accountBl;
     this.configuration     = configuration;
 }
Exemplo n.º 2
0
 public AccountController(
     IJwtTokenBl tokenBl,
     IUserBl userBl,
     IAccountBl accountBl,
     INotificationBl notificationBl,
     IMapper mapper
     )
 {
     _tokenBl        = tokenBl;
     _userBl         = userBl;
     _accountBl      = accountBl;
     _notificationBl = notificationBl;
     _mapper         = mapper;
 }