Example #1
0
 public BarionProcessor(ISettingService settingService, ILocalizationService localizationService, ILogger logger, IBarionPaymentService barionPaymentService, BarionPaymentsContext dbBarionWrapper, IStoreContext storeContext, IWebHelper webHelper, IHttpContextAccessor httpContextAccessor, IPaymentService paymentService, ITransactionService transactionService)
 {
     _settingService      = settingService;
     _localizationService = localizationService;
     _logger = logger;
     _barionPaymentService = barionPaymentService;
     _dbBarionWrapper      = dbBarionWrapper;
     _storeContext         = storeContext;
     _webHelper            = webHelper;
     _httpContextAccessor  = httpContextAccessor;
     _paymentService       = paymentService;
     _transactionService   = transactionService;
 }
 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;
 }
Example #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;
 }