public PaymentZelleController(ILocalizationService localizationService,
                               IPermissionService permissionService,
                               ISettingService settingService,
                               IStoreContext storeContext,
                               IPaymentZelleService zelleService)
 {
     this._localizationService = localizationService;
     this._permissionService   = permissionService;
     this._settingService      = settingService;
     this._storeContext        = storeContext;
     this._zelleService        = zelleService;
 }
Beispiel #2
0
 public ConsolidatePaymentServices(ICacheManager cacheManager,
                                   IRepository <Consolidate> paymentRepository,
                                   IOrderProcessingService orderProcessingService,
                                   IOrderService orderService,
                                   IRepository <Order> orderRepository,
                                   IPaymentTransferService transferServices,
                                   IPaymentZelleService zelleServices,
                                   IBankService bankService)
 {
     this._cacheManager           = cacheManager;
     this._paymentRepository      = paymentRepository;
     this._orderRepository        = orderRepository;
     this._orderService           = orderService;
     this._orderProcessingService = orderProcessingService;
     this._transferServices       = transferServices;
     this._bankServices           = bankService;
     this._zelleServices          = zelleServices;
 }
 public PaymentRegisterZelleViewComponent(IPaymentZelleService zelleService)
 {
     this._zelleService = zelleService;
 }