public CashPaymentProcessor(ILocalizationService localizationService, IPaymentService paymentService, ISettingService settingService, IWebHelper webHelper, CashPaymentSettings cashPaymentSettings) { this._localizationService = localizationService; this._paymentService = paymentService; this._settingService = settingService; this._webHelper = webHelper; this._cashPaymentSettings = cashPaymentSettings; }
/// <summary> /// Install the plugin /// </summary> public override void Install() { //settings var settings = new CashPaymentSettings { TransactMode = TransactMode.Pending }; _settingService.SaveSetting(settings); //locales _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.Cash.Instructions", "This payment method stores credit card information in database (it's not sent to any third-party processor). In order to store credit card information, you must be PCI compliant."); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.Cash.Fields.AdditionalFee", "Additional fee"); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.Cash.Fields.AdditionalFee.Hint", "Enter additional fee to charge your customers."); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.Cash.Fields.AdditionalFeePercentage", "Additional fee. Use percentage"); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.Cash.Fields.AdditionalFeePercentage.Hint", "Determines whether to apply a percentage additional fee to the order total. If not enabled, a fixed value is used."); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.Cash.Fields.TransactMode", "After checkout mark payment as"); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.Cash.Fields.TransactMode.Hint", "Specify transaction mode."); _localizationService.AddOrUpdatePluginLocaleResource("Plugins.Payments.Cash.PaymentMethodDescription", "Pago por efectivo en Dólares."); base.Install(); }