Beispiel #1
0
 public DIAuthorizeController(DiscoveryConnector discoveryConnector, IdgwConnectorManager idgwConnectorManager, StateDIAuthorizationService authorizationStateService, DIRequestValidationService diRequestValidationService, DIRequestAuthorizationService diAuthorizationService)
 {
     this.discoveryConnector         = discoveryConnector;
     this.idgwConnectorManager       = idgwConnectorManager;
     this.authorizationStateService  = authorizationStateService;
     this.diRequestValidationService = diRequestValidationService;
     this.diAuthorizationService     = diAuthorizationService;
 }
Beispiel #2
0
 public MCTokenController(
     IdgwConnectorManager idgwConnectorManager,
     IOptions <Settings> settings,
     StateDIAuthorizationService stateDIAuthorization,
     StatePremiumInfoService statePremiumInfo,
     DIMCTokenService tokenService
     )
 {
     this.settings             = settings.Value;
     this.idgwConnectorManager = idgwConnectorManager;
     this.stateDIAuthorization = stateDIAuthorization;
     this.statePremiumInfo     = statePremiumInfo;
     this.tokenService         = tokenService;
 }