Example #1
0
 public PaymentsController(IAdministratorContext administratorContext,
                           ICreditCardPaymentConfirmationService creditCardPaymentConfirmationService,
                           IBookingOfflinePaymentService offlinePaymentService)
 {
     _administratorContext = administratorContext;
     _creditCardPaymentConfirmationService = creditCardPaymentConfirmationService;
     _offlinePaymentService = offlinePaymentService;
 }
Example #2
0
 public PaymentsController(IBookingPaymentService bookingPaymentService,
                           IAdministratorContext administratorContext, ICounterpartyAccountService counterpartyAccountService, IAgencyAccountService agencyAccountService,
                           ICreditCardPaymentConfirmationService creditCardPaymentConfirmationService)
 {
     _bookingPaymentService                = bookingPaymentService;
     _administratorContext                 = administratorContext;
     _counterpartyAccountService           = counterpartyAccountService;
     _agencyAccountService                 = agencyAccountService;
     _creditCardPaymentConfirmationService = creditCardPaymentConfirmationService;
 }