當前位置: 首頁>>代碼示例>>C#>>正文


C# Payments.PaymentSettings類代碼示例

本文整理匯總了C#中Nop.Core.Domain.Payments.PaymentSettings的典型用法代碼示例。如果您正苦於以下問題:C# PaymentSettings類的具體用法?C# PaymentSettings怎麽用?C# PaymentSettings使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


PaymentSettings類屬於Nop.Core.Domain.Payments命名空間,在下文中一共展示了PaymentSettings類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: PluginController

        public PluginController(IPluginFinder pluginFinder,
            IOfficialFeedManager officialFeedManager,
            ILocalizationService localizationService,
            IWebHelper webHelper,
            IPermissionService permissionService, 
            ILanguageService languageService,
            ISettingService settingService, 
            IStoreService storeService,
            PaymentSettings paymentSettings,
            ShippingSettings shippingSettings,
            TaxSettings taxSettings, 
            ExternalAuthenticationSettings externalAuthenticationSettings, 
            WidgetSettings widgetSettings)
		{
            this._pluginFinder = pluginFinder;
            this._officialFeedManager = officialFeedManager;
            this._localizationService = localizationService;
            this._webHelper = webHelper;
            this._permissionService = permissionService;
            this._languageService = languageService;
            this._settingService = settingService;
            this._storeService = storeService;
            this._paymentSettings = paymentSettings;
            this._shippingSettings = shippingSettings;
            this._taxSettings = taxSettings;
            this._externalAuthenticationSettings = externalAuthenticationSettings;
            this._widgetSettings = widgetSettings;
		}
開發者ID:RobinHoody,項目名稱:nopCommerce,代碼行數:28,代碼來源:PluginController.cs

示例2: PaymentSagePayServerController

        public PaymentSagePayServerController(ISettingService settingService, 
            IPaymentService paymentService, IOrderService orderService, 
            IOrderProcessingService orderProcessingService,
            ILogger logger, SagePayServerPaymentSettings sagePayServerPaymentSettings,
            PaymentSettings paymentSettings, ILocalizationService localizationService,
            IWorkContext workContext, ISagePayServerTransactionService sagePayServerTransactionService,
            IOrderTotalCalculationService orderTotalCalculationService, ICurrencyService currencyService, CurrencySettings currencySettings,
            IMobileDeviceHelper mobileDeviceHelper, OrderSettings orderSettings, HttpContextBase httpContext)
        {
            this._settingService = settingService;
            this._paymentService = paymentService;
            this._orderService = orderService;
            this._orderProcessingService = orderProcessingService;
            this._localizationService = localizationService;
            this._sagePayServerTransactionService = sagePayServerTransactionService;
            this._orderTotalCalculationService = orderTotalCalculationService;
            this._currencyService = currencyService;

            this._sagePayServerPaymentSettings = sagePayServerPaymentSettings;
            this._paymentSettings = paymentSettings;
            this._currencySettings = currencySettings;
            this._orderSettings = orderSettings;

            this._logger = logger;

            this._workContext = workContext;

            this._httpContext = httpContext;

            this._mobileDeviceHelper = mobileDeviceHelper;
        }
開發者ID:philipengland,項目名稱:albionextrusions.co.uk,代碼行數:31,代碼來源:PaymentSagePayServerController.cs

示例3: PaymentPayPalStandardController

 public PaymentPayPalStandardController(IWorkContext workContext,
     IStoreService storeService, 
     ISettingService settingService, 
     IPaymentService paymentService, 
     IOrderService orderService, 
     IOrderProcessingService orderProcessingService,
     ILocalizationService localizationService,
     IStoreContext storeContext,
     ILogger logger, 
     IWebHelper webHelper,
     PaymentSettings paymentSettings,
     PayPalStandardPaymentSettings payPalStandardPaymentSettings)
 {
     this._workContext = workContext;
     this._storeService = storeService;
     this._settingService = settingService;
     this._paymentService = paymentService;
     this._orderService = orderService;
     this._orderProcessingService = orderProcessingService;
     this._localizationService = localizationService;
     this._storeContext = storeContext;
     this._logger = logger;
     this._webHelper = webHelper;
     this._paymentSettings = paymentSettings;
     this._payPalStandardPaymentSettings = payPalStandardPaymentSettings;
 }
開發者ID:jianghaihui,項目名稱:nopCommerce,代碼行數:26,代碼來源:PaymentPayPalStandardController.cs

示例4: CheckoutController

        public CheckoutController(IWorkContext workContext,
            IShoppingCartService shoppingCartService, ILocalizationService localizationService,
            ITaxService taxService, ICurrencyService currencyService,
            IPriceFormatter priceFormatter, IOrderProcessingService orderProcessingService,
            ICustomerService customerService,  ICountryService countryService,
            IStateProvinceService stateProvinceService, IShippingService shippingService,
            IPaymentService paymentService, IOrderTotalCalculationService orderTotalCalculationService,
            ILogger logger, IOrderService orderService, IWebHelper webHelper,
            OrderSettings orderSettings, RewardPointsSettings rewardPointsSettings,
            PaymentSettings paymentSettings)
        {
            this._workContext = workContext;
            this._shoppingCartService = shoppingCartService;
            this._localizationService = localizationService;
            this._taxService = taxService;
            this._currencyService = currencyService;
            this._priceFormatter = priceFormatter;
            this._orderProcessingService = orderProcessingService;
            this._customerService = customerService;
            this._countryService = countryService;
            this._stateProvinceService = stateProvinceService;
            this._shippingService = shippingService;
            this._paymentService = paymentService;
            this._orderTotalCalculationService = orderTotalCalculationService;
            this._logger = logger;
            this._orderService = orderService;
            this._webHelper = webHelper;

            this._orderSettings = orderSettings;
            this._rewardPointsSettings = rewardPointsSettings;
            this._paymentSettings = paymentSettings;
        }
開發者ID:cmcginn,項目名稱:StoreFront,代碼行數:32,代碼來源:CheckoutController.cs

示例5: PaymentService

 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="paymentSettings">Payment settings</param>
 /// <param name="pluginFinder">Plugin finder</param>
 /// <param name="shoppingCartSettings">Shopping cart settings</param>
 public PaymentService(PaymentSettings paymentSettings, IPluginFinder pluginFinder,
     ShoppingCartSettings shoppingCartSettings)
 {
     this._paymentSettings = paymentSettings;
     this._pluginFinder = pluginFinder;
     this._shoppingCartSettings = shoppingCartSettings;
 }
開發者ID:emretiryaki,項目名稱:paymill-nopcommerce,代碼行數:13,代碼來源:PaymentService.cs

示例6: PaymentController

 public PaymentController(IPaymentService paymentService, PaymentSettings paymentSettings,
     ISettingService settingService, IPermissionService permissionService)
 {
     this._paymentService = paymentService;
     this._paymentSettings = paymentSettings;
     this._settingService = settingService;
     this._permissionService = permissionService;
 }
開發者ID:pquic,項目名稱:qCommerce,代碼行數:8,代碼來源:PaymentController.cs

示例7: PaymentController

 public PaymentController(IPaymentService paymentService, PaymentSettings paymentSettings,
     ISettingService settingService, IPermissionService permissionService,
     IPluginFinder pluginFinder)
 {
     this._paymentService = paymentService;
     this._paymentSettings = paymentSettings;
     this._settingService = settingService;
     this._permissionService = permissionService;
     this._pluginFinder = pluginFinder;
 }
開發者ID:nguyentu1982,項目名稱:quancu,代碼行數:10,代碼來源:PaymentController.cs

示例8: SetUp

        public new void SetUp()
        {
            _paymentSettings = new PaymentSettings();
            _paymentSettings.ActivePaymentMethodSystemNames = new List<string>();
            _paymentSettings.ActivePaymentMethodSystemNames.Add("Payments.TestMethod");

            var pluginFinder = new PluginFinder(new AppDomainTypeFinder());

            _shoppingCartSettings = new ShoppingCartSettings();

            _paymentService = new PaymentService(_paymentSettings, pluginFinder, _shoppingCartSettings);
        }
開發者ID:btolbert,項目名稱:test-commerce,代碼行數:12,代碼來源:PaymentServiceTests.cs

示例9: SetUp

        public new void SetUp()
        {
            _paymentSettings = new PaymentSettings();
            _paymentSettings.ActivePaymentMethodSystemNames = new List<string>();
            _paymentSettings.ActivePaymentMethodSystemNames.Add("Payments.TestMethod");

            var pluginFinder = new PluginFinder();

            _shoppingCartSettings = new ShoppingCartSettings();
            _settingService = MockRepository.GenerateMock<ISettingService>();

            _paymentService = new PaymentService(_paymentSettings, pluginFinder, _settingService, _shoppingCartSettings);
        }
開發者ID:RobinHoody,項目名稱:nopCommerce,代碼行數:13,代碼來源:PaymentServiceTests.cs

示例10: PaymentPaytmController

 public PaymentPaytmController(ISettingService settingService,
     IPaymentService paymentService, IOrderService orderService,
     IOrderProcessingService orderProcessingService,
     PaytmPaymentSettings PaytmPaymentSettings,
     PaymentSettings paymentSettings)
 {
     this._settingService = settingService;
     this._paymentService = paymentService;
     this._orderService = orderService;
     this._orderProcessingService = orderProcessingService;
     this._PaytmPaymentSettings = PaytmPaymentSettings;
     this._paymentSettings = paymentSettings;
 }
開發者ID:Paytm-Payments,項目名稱:Paytm_nopCommerce_v3.5_Kit,代碼行數:13,代碼來源:PaymentPaytmController.cs

示例11: PaymentPayPalDirectController

 public PaymentPayPalDirectController(ISettingService settingService, 
     IPaymentService paymentService, IOrderService orderService, 
     IOrderProcessingService orderProcessingService, 
     ILogger logger, PayPalDirectPaymentSettings paypalDirectPaymentSettings,
     PaymentSettings paymentSettings, ILocalizationService localizationService)
 {
     this._settingService = settingService;
     this._paymentService = paymentService;
     this._orderService = orderService;
     this._orderProcessingService = orderProcessingService;
     this._logger = logger;
     this._paypalDirectPaymentSettings = paypalDirectPaymentSettings;
     this._paymentSettings = paymentSettings;
     this._localizationService = localizationService;
 }
開發者ID:nopmcs,項目名稱:mycreativestudio,代碼行數:15,代碼來源:PaymentPayPalDirectController.cs

示例12: PaymentAliPayController

 public PaymentAliPayController(ISettingService settingService, 
     IPaymentService paymentService, IOrderService orderService, 
     IOrderProcessingService orderProcessingService, 
     ILogger logger, IWebHelper webHelper,
     AliPayPaymentSettings aliPayPaymentSettings,
     PaymentSettings paymentSettings)
 {
     this._settingService = settingService;
     this._paymentService = paymentService;
     this._orderService = orderService;
     this._orderProcessingService = orderProcessingService;
     this._logger = logger;
     this._webHelper = webHelper;
     this._aliPayPaymentSettings = aliPayPaymentSettings;
     this._paymentSettings = paymentSettings;
 }
開發者ID:OurProjectTeam,項目名稱:MiniNopCom,代碼行數:16,代碼來源:PaymentAliPayController.cs

示例13: PaymentPayPalStandardController

 public PaymentPayPalStandardController(ISettingService settingService, 
     IPaymentService paymentService, IOrderService orderService,
     IOrderProcessingService orderProcessingService,
     ILogger logger, IWebHelper webHelper,
     PayPalStandardPaymentSettings paypalStandardPaymentSettings,
     PaymentSettings paymentSettings)
 {
     this._settingService = settingService;
     this._paymentService = paymentService;
     this._orderService = orderService;
     this._orderProcessingService = orderProcessingService;
     this._logger = logger;
     this._webHelper = webHelper;
     this._paypalStandardPaymentSettings = paypalStandardPaymentSettings;
     this._paymentSettings = paymentSettings;
 }
開發者ID:emretiryaki,項目名稱:paymill-nopcommerce,代碼行數:16,代碼來源:PaymentPayPalStandardController.cs

示例14: PaymentGoogleCheckoutController

 public PaymentGoogleCheckoutController(ISettingService settingService, 
     IPaymentService paymentService, IOrderProcessingService orderProcessingService, 
     IWebHelper webHelper, OrderSettings orderSettings, IWorkContext workContext,
     CurrencySettings currencySettings, ICurrencyService currencyService,
     PaymentSettings paymentSettings)
 {
     this._settingService = settingService;
     this._paymentService = paymentService;
     this._orderProcessingService = orderProcessingService;
     this._webHelper = webHelper;
     this._orderSettings = orderSettings;
     this._workContext = workContext;
     this._currencySettings = currencySettings;
     this._currencyService = currencyService;
     this._paymentSettings = paymentSettings;
 }
開發者ID:philipengland,項目名稱:albionextrusions.co.uk,代碼行數:16,代碼來源:PaymentGoogleCheckoutController.cs

示例15: PaymentEmiController

 public PaymentEmiController(ISettingService settingService, 
     IPaymentService paymentService, IOrderService orderService, 
     IOrderProcessingService orderProcessingService,
      ILocalizationService localizationService,
     EmiPaymentSettings EmiPaymentSettings,
     PaymentSettings paymentSettings)
 {
     this._settingService = settingService;
     this._paymentService = paymentService;
     this._orderService = orderService;
     this._orderProcessingService = orderProcessingService;
     this._EmiPaymentSettings = EmiPaymentSettings;
     this._localizationService = localizationService;
     this._paymentSettings = paymentSettings;
     
 }
開發者ID:LaOrigin,項目名稱:Leorigin,代碼行數:16,代碼來源:PaymentEmiController.cs


注:本文中的Nop.Core.Domain.Payments.PaymentSettings類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。