public BucketItemsController(IBucketItemService bucketItemService)
 {
     _bucketItemService = bucketItemService;
 }
        public ContributionController(IBucketService BucketService,
                                      IBucketTypeService productTemplateService,
                                      IBucketTypeService BucketTypeService,
                                      IBucketItemService BucketItemService,
                                      IProductService ProductService,
                                      //    IUrlRecordService urlRecordService,
                                      IWorkContext workContext,
                                      //    ILanguageService languageService,
                                      //    ILocalizationService localizationService,
                                      //    ILocalizedEntityService localizedEntityService,
                                      //    ISpecificationAttributeService specificationAttributeService,
                                      //    IPictureService pictureService,
                                      //    ITaxCategoryService taxCategoryService,
                                      //    IProductTagService productTagService,
                                      //    ICopyProductService copyProductService,
                                      //    IPdfService pdfService,
                                      //    IExportManager exportManager,
                                      //    IImportManager importManager,
                                      //    ICustomerActivityService customerActivityService,
                                      IPermissionService permissionService
                                      //    IAclService aclService,
                                      //    IStoreService storeService,
                                      //    IOrderService orderService,
                                      //    IStoreMappingService storeMappingService,
                                      //    IVendorService vendorService,
                                      //    IDateRangeService dateRangeService,
                                      //    IShippingService shippingService,
                                      //    IShipmentService shipmentService,
                                      //    ICurrencyService currencyService,
                                      //    CurrencySettings currencySettings,
                                      //    IMeasureService measureService,
                                      //    MeasureSettings measureSettings,
                                      //    IStaticCacheManager cacheManager,
                                      //    IDateTimeHelper dateTimeHelper,
                                      //    IDiscountService discountService,
                                      //    IProductAttributeService productAttributeService,
                                      //    IBackInStockSubscriptionService backInStockSubscriptionService,
                                      //    IShoppingCartService shoppingCartService,
                                      //    IProductAttributeFormatter productAttributeFormatter,
                                      //    IProductAttributeParser productAttributeParser,
                                      //    IDownloadService downloadService,
                                      //    ISettingService settingService,
                                      //    TaxSettings taxSettings,
                                      //    VendorSettings vendorSettings
                                      )

        {
            this._BucketService = BucketService;
            //this._productTemplateService = productTemplateService;
            this._BucketTypeService = BucketTypeService;
            this._BucketItemService = BucketItemService;
            this._ProductService    = ProductService;
            //this._urlRecordService = urlRecordService;
            this._workContext = workContext;
            //this._languageService = languageService;
            //this._localizationService = localizationService;
            //this._localizedEntityService = localizedEntityService;
            //this._specificationAttributeService = specificationAttributeService;
            //this._pictureService = pictureService;
            //this._taxCategoryService = taxCategoryService;
            //this._productTagService = productTagService;
            //this._copyProductService = copyProductService;
            //this._pdfService = pdfService;
            //this._exportManager = exportManager;
            //this._importManager = importManager;
            //this._customerActivityService = customerActivityService;
            this._permissionService = permissionService;
            //this._aclService = aclService;
            //this._storeService = storeService;
            //this._orderService = orderService;
            //this._storeMappingService = storeMappingService;
            //this._vendorService = vendorService;
            //this._dateRangeService = dateRangeService;
            //this._shippingService = shippingService;
            //this._shipmentService = shipmentService;
            //this._currencyService = currencyService;
            //this._currencySettings = currencySettings;
            //this._measureService = measureService;
            //this._measureSettings = measureSettings;
            //this._cacheManager = cacheManager;
            //this._dateTimeHelper = dateTimeHelper;
            //this._discountService = discountService;
            //this._productAttributeService = productAttributeService;
            //this._backInStockSubscriptionService = backInStockSubscriptionService;
            //this._shoppingCartService = shoppingCartService;
            //this._productAttributeFormatter = productAttributeFormatter;
            //this._productAttributeParser = productAttributeParser;
            //this._downloadService = downloadService;
            //this._settingService = settingService;
            //this._taxSettings = taxSettings;
            //this._vendorSettings = vendorSettings;
        }