示例#1
0
 public AbcMattressProductService(
     IAbcMattressModelService abcMattressService,
     IAbcMattressBaseService abcMattressBaseService,
     IAbcMattressEntryService abcMattressEntryService,
     IAbcMattressFrameService abcMattressFrameService,
     IAbcMattressGiftService abcMattressGiftService,
     IAbcMattressPackageService abcMattressPackageService,
     IAbcMattressProtectorService abcMattressProtectorService,
     ICategoryService categoryService,
     IGenericAttributeService genericAttributeService,
     IManufacturerService manufacturerService,
     IProductService productService,
     IProductAbcFinanceService productAbcFinanceService,
     IProductAttributeService productAttributeService,
     IStoreService storeService,
     IStoreMappingService storeMappingService,
     ITaxCategoryService taxCategoryService,
     IUrlRecordService urlRecordService,
     ILogger logger,
     INopDataProvider nopDataProvider,
     ISpecificationAttributeService specificationAttributeService
     )
 {
     _abcMattressService          = abcMattressService;
     _abcMattressBaseService      = abcMattressBaseService;
     _abcMattressEntryService     = abcMattressEntryService;
     _abcMattressFrameService     = abcMattressFrameService;
     _abcMattressGiftService      = abcMattressGiftService;
     _abcMattressPackageService   = abcMattressPackageService;
     _abcMattressProtectorService = abcMattressProtectorService;
     _categoryService             = categoryService;
     _genericAttributeService     = genericAttributeService;
     _manufacturerService         = manufacturerService;
     _productService           = productService;
     _productAbcFinanceService = productAbcFinanceService;
     _productAttributeService  = productAttributeService;
     _storeMappingService      = storeMappingService;
     _storeService             = storeService;
     _taxCategoryService       = taxCategoryService;
     _urlRecordService         = urlRecordService;
     _logger          = logger;
     _nopDataProvider = nopDataProvider;
     _specificationAttributeService = specificationAttributeService;
 }
 public AbcSynchronyPaymentsViewComponent(
     ILogger logger,
     IGenericAttributeService genericAttributeService,
     IAbcMattressListingPriceService abcMattressListingPriceService,
     IAbcMattressProductService abcMattressProductService,
     IProductAbcDescriptionService productAbcDescriptionService,
     IProductAbcFinanceService productAbcFinanceService,
     IProductService productService,
     IStoreContext storeContext
     )
 {
     _logger = logger;
     _abcMattressListingPriceService = abcMattressListingPriceService;
     _abcMattressProductService      = abcMattressProductService;
     _genericAttributeService        = genericAttributeService;
     _productAbcDescriptionService   = productAbcDescriptionService;
     _productAbcFinanceService       = productAbcFinanceService;
     _productService = productService;
     _storeContext   = storeContext;
 }