コード例 #1
0
 public SimplifyController(
     SimplifyPaymentSettings simplifyPaymentSettings,
     IStoreService storeService,
     ISettingService settingService,
     IWorkContext workContext,
     IEncryptionService encryptionService,
     ILogger logger,
     ILocalizationService localizationService,
     IStoreContext storeContext,
     IWebHelper webHelper,
     IOrderService orderService,
     IPaymentService paymentService,
     PaymentSettings paymentSettings,
     IOrderProcessingService orderProcessingService
     )
 {
     this._simplifyPaymentSettings = simplifyPaymentSettings;
     this._logger                 = logger;
     this._storeService           = storeService;
     this._settingService         = settingService;
     this._workContext            = workContext;
     this._encryptionService      = encryptionService;
     this._localizationService    = localizationService;
     this._storeContext           = storeContext;
     this._webHelper              = webHelper;
     this._orderService           = orderService;
     this._paymentService         = paymentService;
     this._paymentSettings        = paymentSettings;
     this._orderProcessingService = orderProcessingService;
 }
コード例 #2
0
 public SimplifyController(
     SimplifyPaymentSettings simplifyPaymentSettings,
     IStoreService storeService,
     ISettingService settingService,
     IWorkContext workContext,
     IEncryptionService encryptionService,
     ILogger logger
     )
 {
     this._simplifyPaymentSettings = simplifyPaymentSettings;
     this._logger            = logger;
     this._storeService      = storeService;
     this._settingService    = settingService;
     this._workContext       = workContext;
     this._encryptionService = encryptionService;
 }