Exemplo n.º 1
0
 public AgencyAccountsController(IAdministratorContext administratorContext, IAgencyAccountService agencyAccountService,
                                 IBalanceNotificationsManagementService balanceNotificationsManagementService)
 {
     _administratorContext = administratorContext;
     _agencyAccountService = agencyAccountService;
     _balanceNotificationsManagementService = balanceNotificationsManagementService;
 }
Exemplo n.º 2
0
 public PaymentsController(IBookingPaymentService bookingPaymentService,
                           IAdministratorContext administratorContext, ICounterpartyAccountService counterpartyAccountService, IAgencyAccountService agencyAccountService,
                           ICreditCardPaymentConfirmationService creditCardPaymentConfirmationService)
 {
     _bookingPaymentService                = bookingPaymentService;
     _administratorContext                 = administratorContext;
     _counterpartyAccountService           = counterpartyAccountService;
     _agencyAccountService                 = agencyAccountService;
     _creditCardPaymentConfirmationService = creditCardPaymentConfirmationService;
 }