Exemple #1
0
 public AgentBookingManagementService(ISupplierBookingManagementService managementService,
                                      IBookingRecordManager recordManager, IBookingStatusRefreshService statusRefreshService)
 {
     _managementService    = managementService;
     _recordManager        = recordManager;
     _statusRefreshService = statusRefreshService;
 }
 public InternalBookingsController(IBookingsProcessingService bookingsProcessingService,
                                   IServiceAccountContext serviceAccountContext,
                                   IBookingReportsService reportsService,
                                   IMarkupBonusMaterializationService markupBonusMaterializationService,
                                   IBookingStatusRefreshService bookingRefreshStatusService,
                                   INGeniusRefundService refundService)
 {
     _bookingsProcessingService         = bookingsProcessingService;
     _serviceAccountContext             = serviceAccountContext;
     _reportsService                    = reportsService;
     _markupBonusMaterializationService = markupBonusMaterializationService;
     _bookingRefreshStatusService       = bookingRefreshStatusService;
     _refundService = refundService;
 }