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