Ejemplo n.º 1
0
 public PaymentPrepaymentController(ISettingService settingService,
                                    PrepaymentPaymentSettings prepaymentPaymentSettings,
                                    ILocalizationService localizationService)
 {
     this._settingService            = settingService;
     this._prepaymentPaymentSettings = prepaymentPaymentSettings;
     this._localizationService       = localizationService;
 }
		public PaymentPrepaymentController(ISettingService settingService,
			PrepaymentPaymentSettings prepaymentPaymentSettings,
			ILocalizationService localizationService)
		{
			this._settingService = settingService;
			this._prepaymentPaymentSettings = prepaymentPaymentSettings;
			this._localizationService = localizationService;
		}
Ejemplo n.º 3
0
 public PrepaymentProvider(PrepaymentPaymentSettings settings, IOrderTotalCalculationService orderTotalCalculationService)
 {
     this._settings = settings;
     this._orderTotalCalculationService = orderTotalCalculationService;
 }