Esempio n. 1
0
        public AccountController(ICommandBus commandBus, RedisReadClient redisReadClient)
        {
            this.commandBus = commandBus;
            this.redisReadClient = redisReadClient;

            this.UserDevicePrefixNamespace = "UserDevice";
            this.RefreshTokenPrefixNamespace = "Ticket";
        }
 public RedisRefreshTokenService(RedisReadClient redisReadClient)
 {
     this.redisReadClient = redisReadClient;
     this.RefreshTokenPrefixNamespace = "Ticket";
 }
Esempio n. 3
0
 public RedisDeviceService(RedisReadClient redisReadClient)
 {
     this.redisReadClient = redisReadClient;
     this.UserDevicePrefixNamespace = "UserDevice";
 }