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