예제 #1
0
 public OrderWebService(
     IOrderService orderService,
     IStoreContext storeContext,
     IWorkContext workContext,
     IDateTimeHelper dateTimeHelper,
     ILocalizationService localizationService,
     ICurrencyService currencyService,
     IOrderProcessingService orderProcessingService,
     IPriceFormatter priceFormatter,
     IDownloadService downloadService,
     IProductAttributeParser productAttributeParser,
     IProductService productService,
     ICountryService countryService,
     IAddressWebService addressWebService,
     IShipmentService shipmentService,
     IPaymentService paymentService,
     IGiftCardService giftCardService,
     IShippingService shippingService,
     IRewardPointsService rewardPointsService,
     IOrderTotalCalculationService orderTotalCalculationService,
     OrderSettings orderSettings,
     PdfSettings pdfSettings,
     TaxSettings taxSettings,
     CatalogSettings catalogSettings,
     ShippingSettings shippingSettings,
     RewardPointsSettings rewardPointsSettings)
 {
     this._orderService                 = orderService;
     this._storeContext                 = storeContext;
     this._workContext                  = workContext;
     this._dateTimeHelper               = dateTimeHelper;
     this._localizationService          = localizationService;
     this._currencyService              = currencyService;
     this._orderProcessingService       = orderProcessingService;
     this._priceFormatter               = priceFormatter;
     this._downloadService              = downloadService;
     this._productAttributeParser       = productAttributeParser;
     this._productService               = productService;
     this._countryService               = countryService;
     this._addressWebService            = addressWebService;
     this._shipmentService              = shipmentService;
     this._paymentService               = paymentService;
     this._giftCardService              = giftCardService;
     this._shippingService              = shippingService;
     this._rewardPointsService          = rewardPointsService;
     this._orderTotalCalculationService = orderTotalCalculationService;
     this._orderSettings                = orderSettings;
     this._pdfSettings                  = pdfSettings;
     this._taxSettings                  = taxSettings;
     this._catalogSettings              = catalogSettings;
     this._shippingSettings             = shippingSettings;
     this._rewardPointsSettings         = rewardPointsSettings;
 }
예제 #2
0
 public CheckoutWebService(
     IOrderTotalCalculationService orderTotalCalculationService,
     IWorkContext workContext,
     ICountryService countryService,
     IStoreMappingService storeMappingService,
     IAddressWebService addressWebService,
     ITaxService taxService,
     IShippingService shippingService,
     ILocalizationService localizationService,
     ICurrencyService currencyService,
     IStoreContext storeContext,
     IPriceFormatter priceFormatter,
     IGenericAttributeService genericAttributeService,
     IPaymentService paymentService,
     IRewardPointsService rewardPointsService,
     IWebHelper webHelper,
     IOrderProcessingService orderProcessingService,
     IOrderService orderService,
     ShippingSettings shippingSettings,
     RewardPointsSettings rewardPointsSettings,
     PaymentSettings paymentSettings,
     OrderSettings orderSettings)
 {
     this._orderTotalCalculationService = orderTotalCalculationService;
     this._workContext             = workContext;
     this._countryService          = countryService;
     this._storeMappingService     = storeMappingService;
     this._addressWebService       = addressWebService;
     this._taxService              = taxService;
     this._shippingService         = shippingService;
     this._localizationService     = localizationService;
     this._currencyService         = currencyService;
     this._storeContext            = storeContext;
     this._priceFormatter          = priceFormatter;
     this._genericAttributeService = genericAttributeService;
     this._paymentService          = paymentService;
     this._rewardPointsService     = rewardPointsService;
     this._webHelper = webHelper;
     this._orderProcessingService = orderProcessingService;
     this._orderService           = orderService;
     this._shippingSettings       = shippingSettings;
     this._rewardPointsSettings   = rewardPointsSettings;
     this._paymentSettings        = paymentSettings;
     this._orderSettings          = orderSettings;
 }
        public CustomerWebService(
            IOpenAuthenticationService openAuthenticationService,
            ICustomerAttributeParser customerAttributeParser,
            ICustomerAttributeService customerAttributeService,
            ILocalizationService localizationService,
            IDateTimeHelper dateTimeHelper,
            INewsLetterSubscriptionService newsLetterSubscriptionService,
            IWorkContext workContext,
            IStoreContext storeContext,
            ICountryService countryService,
            IStateProvinceService stateProvinceService,
            IGenericAttributeService genericAttributeService,
            IWorkflowMessageService workflowMessageService,
            IReturnRequestService returnRequestService,
            IStoreMappingService storeMappingService,
            IAddressWebService addressWebService,
            IOrderService orderService,
            IDownloadService downloadService,
            IPictureService pictureService,

            CustomerSettings customerSettings,
            DateTimeSettings dateTimeSettings,
            TaxSettings taxSettings,
            ForumSettings forumSettings,
            ExternalAuthenticationSettings externalAuthenticationSettings,
            SecuritySettings securitySettings,
            CaptchaSettings captchaSettings,
            RewardPointsSettings rewardPointsSettings,
            OrderSettings orderSettings,
            MediaSettings mediaSettings
            )
        {
            this._openAuthenticationService     = openAuthenticationService;
            this._customerAttributeParser       = customerAttributeParser;
            this._customerAttributeService      = customerAttributeService;
            this._localizationService           = localizationService;
            this._dateTimeHelper                = dateTimeHelper;
            this._newsLetterSubscriptionService = newsLetterSubscriptionService;
            this._workContext             = workContext;
            this._storeContext            = storeContext;
            this._countryService          = countryService;
            this._stateProvinceService    = stateProvinceService;
            this._genericAttributeService = genericAttributeService;
            this._workflowMessageService  = workflowMessageService;
            this._returnRequestService    = returnRequestService;
            this._storeMappingService     = storeMappingService;
            this._addressWebService       = addressWebService;
            this._orderService            = orderService;
            this._downloadService         = downloadService;
            this._pictureService          = pictureService;

            this._customerSettings = customerSettings;
            this._dateTimeSettings = dateTimeSettings;
            this._taxSettings      = taxSettings;
            this._forumSettings    = forumSettings;
            this._externalAuthenticationSettings = externalAuthenticationSettings;
            this._securitySettings     = securitySettings;
            this._captchaSettings      = captchaSettings;
            this._rewardPointsSettings = rewardPointsSettings;
            this._orderSettings        = orderSettings;
            this._mediaSettings        = mediaSettings;
        }