public NGeniusPaymentService(IBookingRecordManager bookingRecordManager,
                              INGeniusClient client, IAgencyService agencyService, ICreditCardPaymentManagementService paymentService)
 {
     _bookingRecordManager = bookingRecordManager;
     _client         = client;
     _agencyService  = agencyService;
     _paymentService = paymentService;
 }
 public NGeniusWebhookProcessingService(EdoContext context, ICreditCardPaymentManagementService paymentService,
                                        IPaymentLinksProcessingService paymentLinksProcessingService, ILogger <NGeniusWebhookProcessingService> logger)
 {
     _context = context;
     _paymentLinksProcessingService = paymentLinksProcessingService;
     _logger         = logger;
     _paymentService = paymentService;
 }