Exemple #1
0
 public WeixinPaymentService(IOrderService orderService,
                             ILogger logger,
                             ILocalizationService localizationService,
                             IOrderProcessingService orderProcessingService,
                             WeixinPaymentSetting weixinPaymentSetting,
                             IWebHelper webHelper,
                             IStoreContext storeContext)
 {
     this._logger = logger;
     this._localizationService    = localizationService;
     this._orderProcessingService = orderProcessingService;
     this._WeixinPaymentSetting   = weixinPaymentSetting;
     this._webHelper    = webHelper;
     this._storeContext = storeContext;
 }
Exemple #2
0
 public PaymentWeixinController(ISettingService settingService, IPaymentService paymentService,
                                IOrderService orderService, ILogger logger, ILocalizationService localizationService,
                                IWebHelper webHelper, IOrderProcessingService orderProcessingService,
                                WeixinPaymentSetting WeixinPaymentSetting, IStoreContext storeContext,
                                IWeixinPaymentService weixinPaymentService)
 {
     this._settingService         = settingService;
     this._paymentService         = paymentService;
     this._orderService           = orderService;
     this._webHelper              = webHelper;
     this._logger                 = logger;
     this._localizationService    = localizationService;
     this._orderProcessingService = orderProcessingService;
     this._WeixinPaymentSetting   = WeixinPaymentSetting;
     this._storeContext           = storeContext;
     this._weixinPaymentService   = weixinPaymentService;
 }