コード例 #1
0
ファイル: SystemLoginEndpoint.cs プロジェクト: rhw1111/DCEM
 public SystemLoginEndpointIMP(IAuthorizationEndpointRepository authorizationEndpointRepository, ISecurityService securityService, ISystemLoginEndpointStore systemLoginEndpointStore, IAuthorizationEndpointStore authorizationEndpointStore)
 {
     _authorizationEndpointRepository = authorizationEndpointRepository;
     _securityService            = securityService;
     _systemLoginEndpointStore   = systemLoginEndpointStore;
     _authorizationEndpointStore = authorizationEndpointStore;
 }
コード例 #2
0
 public ThirdPartySystemTokenRecordStore(IHashGroupRepositoryCacheProxy hashGroupRepository, ISystemTokenConnectionFactory systemTokenConnectionFactory, IStoreInfoResolveService storeInfoResolveService
                                         , ISystemLoginEndpointStore systemLoginEndpointStore, IAuthorizationEndpointStore authorizationEndpointStore
                                         )
 {
     _hashGroupRepository          = hashGroupRepository;
     _systemTokenConnectionFactory = systemTokenConnectionFactory;
     _storeInfoResolveService      = storeInfoResolveService;
     _systemLoginEndpointStore     = systemLoginEndpointStore;
     _authorizationEndpointStore   = authorizationEndpointStore;
 }
コード例 #3
0
 public SystemLoginEndpointRepository(ISystemLoginEndpointStore systemLoginEndpointStore)
 {
     _systemLoginEndpointStore = systemLoginEndpointStore;
 }