示例#1
0
        private readonly IStringConnectionFactory stringConnectionFactory; // BranchではなくTrunkに接続する必要があるため

        public SessionStorageProcessor(
            IAutoMapper mapper,
            ISessionStorageQueryProcessor sessionStorage,
            IStringConnectionFactory connectionFactory)
        {
            autoMapper = mapper;
            sessionStorageQueryProcessor = sessionStorage;
            stringConnectionFactory      = connectionFactory;
        }
示例#2
0
 public AuthorizationProcessor(
     IAuthorizationQueryProcessor authorizationQueryProcessor,
     IStringConnectionFactory stringConnectionFactory,
     IDbHelper helper
     )
 {
     this.authorizationQueryProcessor = authorizationQueryProcessor;
     this.stringConnectionFactory     = stringConnectionFactory;
     this.helper = helper;
 }
示例#3
0
 public AuthenticationProcessor(
     IAuthenticationQueryProcessor authenticationQueryProcessor,
     IHashAlgorithm hashAlgorithm,
     IStringConnectionFactory stringConnectionFactory
     )
 {
     this.authenticationQueryProcessor = authenticationQueryProcessor;
     this.hashAlgorithm           = hashAlgorithm;
     this.stringConnectionFactory = stringConnectionFactory;
 }