public BookingManagementService(IManagerContextService managerContextService, DirectContracts.Services.IBookingService bookingService, IBookingWebhookService bookingWebhookService, DirectContractsDbContext dbContext)
 {
     _managerContext        = managerContextService;
     _bookingService        = bookingService;
     _bookingWebhookService = bookingWebhookService;
     _dbContext             = dbContext;
 }
예제 #2
0
 public BookingWebhookController(IBookingWebhookService bookingWebhookService, IBookingService bookingService)
 {
     _bookingWebhookService = bookingWebhookService;
     _bookingService        = bookingService;
 }