Ejemplo n.º 1
0
 public YahooService(
     IAbcMattressBaseService abcMattressBaseService,
     IAbcMattressEntryService abcMattressEntryService,
     IAbcMattressFrameService abcMattressFrameService,
     IAbcMattressGiftService abcMattressGiftService,
     IAbcMattressModelService abcMattressModelService,
     IAbcMattressPackageService abcMattressPackageService,
     IAbcMattressProtectorService abcMattressProtectorService,
     IAddressService addressService,
     IAttributeUtilities attributeUtilities,
     ICountryService countryService,
     ICustomOrderService customOrderService,
     ICustomShopService customShopService,
     IEncryptionService encryptionService,
     IGenericAttributeService genericAttributeService,
     IGiftCardService giftCardService,
     IHomeDeliveryCostService homeDeliveryCostService,
     IPriceCalculationService priceCalculationService,
     IProductService productService,
     IProductAbcDescriptionService productAbcDescriptionService,
     IStateProvinceService stateProvinceService,
     IStoreService storeService,
     IUrlRecordService urlRecordService,
     IWarrantyService warrantyService,
     ExportOrderSettings settings,
     SecuritySettings securitySettings,
     IPaymentService paymentService
     )
 {
     _abcMattressBaseService      = abcMattressBaseService;
     _abcMattressEntryService     = abcMattressEntryService;
     _abcMattressFrameService     = abcMattressFrameService;
     _abcMattressGiftService      = abcMattressGiftService;
     _abcMattressModelService     = abcMattressModelService;
     _abcMattressPackageService   = abcMattressPackageService;
     _abcMattressProtectorService = abcMattressProtectorService;
     _addressService               = addressService;
     _attributeUtilities           = attributeUtilities;
     _countryService               = countryService;
     _customOrderService           = customOrderService;
     _customShopService            = customShopService;
     _encryptionService            = encryptionService;
     _genericAttributeService      = genericAttributeService;
     _giftCardService              = giftCardService;
     _homeDeliveryCostService      = homeDeliveryCostService;
     _productService               = productService;
     _productAbcDescriptionService = productAbcDescriptionService;
     _priceCalculationService      = priceCalculationService;
     _stateProvinceService         = stateProvinceService;
     _storeService     = storeService;
     _urlRecordService = urlRecordService;
     _warrantyService  = warrantyService;
     _settings         = settings;
     _securitySettings = securitySettings;
     _paymentService   = paymentService;
 }
Ejemplo n.º 2
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;
 }