Example #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;
 }
Example #2
0
 public AbcMattressBaseService(
     IRepository <AbcMattressBase> abcMattressBaseRepository,
     IAbcMattressEntryService abcMattressEntryService,
     IAbcMattressPackageService abcMattressPackageService
     )
 {
     _abcMattressBaseRepository = abcMattressBaseRepository;
     _abcMattressEntryService   = abcMattressEntryService;
     _abcMattressPackageService = abcMattressPackageService;
 }
Example #3
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;
 }
Example #4
0
 public UpdateMattressesTask(
     ILogger logger,
     IAbcMattressModelService abcMattressModelService,
     IAbcMattressEntryService abcMattressEntryService,
     IAbcMattressPackageService abcMattressPackageService,
     IAbcMattressProductService abcMattressProductService,
     IProductService productService,
     IProductAbcDescriptionService productAbcDescriptionService,
     IStoreService storeService,
     IStoreMappingService storeMappingService
     )
 {
     _logger = logger;
     _abcMattressModelService      = abcMattressModelService;
     _abcMattressEntryService      = abcMattressEntryService;
     _abcMattressPackageService    = abcMattressPackageService;
     _abcMattressProductService    = abcMattressProductService;
     _productService               = productService;
     _productAbcDescriptionService = productAbcDescriptionService;
     _storeService        = storeService;
     _storeMappingService = storeMappingService;
 }