public BarionModelFactory(ITransactionService transaction, IAllowedIpService allowedIpService, IStoreContext storeContext, IStoreService storeService)
 {
     _transaction  = transaction;
     _allowedIps   = allowedIpService;
     _storeContext = storeContext;
     _storeService = storeService;
 }
 public BarionPaymenStatusViewComponent(ILocalizationService localizationService, ILogger logger, ISettingService settingService, IOrderService orderService, ITransactionService transactions, IBarionPaymentService barionApi, IStoreContext storeContext)
 {
     _localizationService = localizationService;
     _logger         = logger;
     _settingService = settingService;
     _orderService   = orderService;
     _transactions   = transactions;
     _barionApi      = barionApi;
     _storeContext   = storeContext;
 }
Beispiel #3
0
 public BarionPaymentController(IOrderService orderService, IOrderProcessingService orderProcessingService, ITransactionService transactionService, IBarionPaymentService barionPaymentService, IStoreContext storeContext, ISettingService settingService, IEventPublisher eventPublisher, ILogger logger)
 {
     _orderService           = orderService;
     _orderProcessingService = orderProcessingService;
     _transactionService     = transactionService;
     _barionPaymentService   = barionPaymentService;
     _storeContext           = storeContext;
     _settingService         = settingService;
     _eventPublisher         = eventPublisher;
     _logger = logger;
 }