public WayForPayService(
     WayForPayPaymentSettings wayForPayPaymentSettings,
     CurrencySettings currencySettings,
     IWebHelper webHelper,
     ICurrencyService currencyService,
     IOrderService orderService)
 {
     _wayForPayPaymentSettings = wayForPayPaymentSettings;
     _webHelper        = webHelper;
     _currencyService  = currencyService;
     _currencySettings = currencySettings;
     _orderService     = orderService;
 }
 public PaymentWayForPayController(
     WayForPayPaymentSettings wayForPayPaymentSettings,
     PaymentSettings paymentSettings,
     HttpContextBase httpContext,
     ISettingService settingService,
     IPaymentService paymentService,
     IOrderService orderService,
     IOrderProcessingService orderProcessingService,
     ILocalizationService localizationService,
     IWebHelper webHelper,
     IWayForPayService wayForPayService)
 {
     _wayForPayPaymentSettings = wayForPayPaymentSettings;
     _paymentSettings          = paymentSettings;
     _httpContext            = httpContext;
     _settingService         = settingService;
     _paymentService         = paymentService;
     _orderService           = orderService;
     _orderProcessingService = orderProcessingService;
     _localizationService    = localizationService;
     _webHelper        = webHelper;
     _wayForPayService = wayForPayService;
 }