public BookingOrchestrationClient( BookFlightService bookFlightService, BookHotelService bookHotelService, SendGridService sendGridService, IBookingConfiguration configuration) { _bookFlightService = bookFlightService; _bookHotelService = bookHotelService; _sendGridService = sendGridService; _configuration = configuration; }
public BookingHotelFunction(BookHotelService bookHotelService, SendGridService sendGridService, IBookingConfiguration configuration) { _bookHotelService = bookHotelService; _sendGridService = sendGridService; _configuration = configuration; }