public PayFastPaymentProcessor(IOrderTotalCalculationService orderTotalCalculationService,
                                ISettingService settingService,
                                IWebHelper webHelper,
                                PayFastPaymentSettings payFastPaymentSettings)
 {
     this._orderTotalCalculationService = orderTotalCalculationService;
     this._settingService         = settingService;
     this._webHelper              = webHelper;
     this._payFastPaymentSettings = payFastPaymentSettings;
 }
 public PayFastPaymentProcessor(ILocalizationService localizationService,
                                IPaymentService paymentService,
                                ISettingService settingService,
                                IWebHelper webHelper,
                                PayFastPaymentSettings payFastPaymentSettings)
 {
     this._localizationService    = localizationService;
     this._paymentService         = paymentService;
     this._settingService         = settingService;
     this._webHelper              = webHelper;
     this._payFastPaymentSettings = payFastPaymentSettings;
 }