Beispiel #1
0
 public IdentityController(
     IIdentityRepoService identityService,
     IMediator mediator,
     IMeasureService measure,
     IDetectionService detection)
 {
     _identityService = identityService;
     _mediator        = mediator;
     _measure         = measure;
     _detection       = detection;
 }
Beispiel #2
0
 public OTPLoginCommandHandler(
     IIdentityRepoService identityRepoService,
     UserManager <cor_useraccount> userManager,
     IMeasureService measure,
     IResponseCacheService cacheService,
     DataContext dataContext)
 {
     _dataContext  = dataContext;
     _userManager  = userManager;
     _service      = identityRepoService;
     _measure      = measure;
     _cacheService = cacheService;
 }
Beispiel #3
0
 public LoginCommandHandler(
     IIdentityRepoService identityRepoService,
     UserManager <cor_useraccount> userManager,
     IMeasureService measure,
     DataContext dataContext,
     IDetectionService detectionService,
     ILoggerService loggerService,
     IResponseCacheService responseCacheService)
 {
     _userManager      = userManager;
     _cacheService     = responseCacheService;
     _service          = identityRepoService;
     _measure          = measure;
     _securityContext  = dataContext;
     _logger           = loggerService;
     _detectionService = detectionService;
 }