private ThatTruyenGameHandler(ISlotMachine25Lines dbService, IGenerateSlotData slotsGeneService, IGenerateBonusData bonusGeneService)
        {
            _dbService        = dbService;
            _slotsGeneService = slotsGeneService;
            _bonusGeneService = bonusGeneService;

            _testService = new TestService();
            Clients      = GlobalHost.ConnectionManager.GetHubContext <ThatTruyenHub>().Clients;

            //jackpot
            _jackpotGoldList = new ConcurrentDictionary <long, long>();
            _jackpotCoinList = new ConcurrentDictionary <long, long>();
            _jackpotTimer    = new Timer(UpdateJackpot, null, 0, 5000);
        }