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