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";
 }
 public RedisDeviceService(RedisReadClient redisReadClient)
 {
     this.redisReadClient = redisReadClient;
     this.UserDevicePrefixNamespace = "UserDevice";
 }