Example #1
0
 public AuthenticateIdentityHandler(IDataLayer dataLayer, ICachingService cachingService, IHelperService helperService, JwtOptionsBO jwtOptionsBo, IJwtService jwtService)
 {
     _jwtService     = jwtService;
     _jwtOptions     = jwtOptionsBo;
     _helperService  = helperService;
     _dataLayer      = dataLayer;
     _cachingService = cachingService;
 }
Example #2
0
 public AuthenticateIdentityHandler(IDataLayer dataLayer, ICachingService cachingService, IHelperService helperService, JwtOptionsBO jwtOptionsBo, IJwtService jwtService, ILoggerWrapper recordsWrapper)
 {
     _recordsService = recordsWrapper;
     _jwtService     = jwtService;
     _jwtOptions     = jwtOptionsBo;
     _helperService  = helperService;
     _dataLayer      = dataLayer;
     _cachingService = cachingService;
 }
Example #3
0
 public JwtService(JwtOptionsBO jwtOptions)
 {
     _jwtOptions = jwtOptions;
 }
Example #4
0
 public GetCredentialListHandler(IDataLayer dataLayer, ICachingService cachingService, IHelperService helperService, JwtOptionsBO jwtOptionsBo, IJwtService jwtService, ILoggerWrapper recordsWrapper)
 {
     _dataLayer      = dataLayer;
     _cachingService = cachingService;
 }