Ejemplo n.º 1
0
        public CatalogManager()
        {
            this._marketplace     = new MarketplaceManager();
            this._petRaceManager  = new PetRaceManager();
            this._voucherManager  = new VoucherManager();
            this._clothingManager = new ClothingManager();

            this._itemOffers = new Dictionary <int, int>();
            this._pages      = new Dictionary <int, CatalogPage>();
            this._bundles    = new Dictionary <int, CatalogBundle>();
            this._botPresets = new Dictionary <int, CatalogBot>();
            this._items      = new Dictionary <int, Dictionary <int, CatalogItem> >();
            this._deals      = new Dictionary <int, Dictionary <int, CatalogDeal> >();
            this._clubitems  = new List <CatalogItem>();
        }
        public CatalogManager()
        {
            _marketplace        = new MarketplaceManager();
            _petRaceManager     = new PetRaceManager();
            _voucherManager     = new VoucherManager();
            _clothingManager    = new ClothingManager();
            _predesignedManager = new PredesignedRoomsManager();
            _predesignedManager.Initialize();

            _itemOffers       = new Dictionary <int, int>();
            _pages            = new Dictionary <int, CatalogPage>();
            _botPresets       = new Dictionary <int, CatalogBot>();
            _items            = new Dictionary <int, Dictionary <int, CatalogItem> >();
            _deals            = new Dictionary <int, Dictionary <int, CatalogDeal> >();
            _predesignedItems = new Dictionary <int, PredesignedContent>();
            _recyclerLevels   = new List <int>();
        }
        public CatalogManager()
        {
            this._marketplace        = new MarketplaceManager();
            this._petRaceManager     = new PetRaceManager();
            this._voucherManager     = new VoucherManager();
            this._clothingManager    = new ClothingManager();
            this._predesignedManager = new PredesignedRoomsManager();
            this._predesignedManager.Initialize();

            this._itemOffers       = new Dictionary <int, int>();
            this._pages            = new Dictionary <int, CatalogPage>();
            this._botPresets       = new Dictionary <int, CatalogBot>();
            this._items            = new Dictionary <int, Dictionary <int, CatalogItem> >();
            this._deals            = new Dictionary <int, Dictionary <int, CatalogDeal> >();
            this._predesignedItems = new Dictionary <int, PredesignedContent>();
            this._televisions      = new Dictionary <int, TelevisionItem>();
        }
Ejemplo n.º 4
0
        public CatalogManager()
        {
            this._marketplace    = new MarketplaceManager();
            this._petRaceManager = new PetRaceManager();

            this._voucherManager = new VoucherManager();
            this._voucherManager.Init();

            this._clothingManager = new ClothingManager();
            this._clothingManager.Init();

            this._itemOffers = new Dictionary <int, int>();
            this._pages      = new Dictionary <int, CatalogPage>();
            this._botPresets = new Dictionary <int, CatalogBot>();
            this._items      = new Dictionary <int, Dictionary <int, CatalogItem> >();
            this._deals      = new Dictionary <int, CatalogDeal>();
            this._promotions = new Dictionary <int, CatalogPromotion>();
        }