Пример #1
0
 public BookingOrchestrationClient(
     BookFlightService bookFlightService,
     BookHotelService bookHotelService,
     SendGridService sendGridService,
     IBookingConfiguration configuration)
 {
     _bookFlightService = bookFlightService;
     _bookHotelService  = bookHotelService;
     _sendGridService   = sendGridService;
     _configuration     = configuration;
 }
Пример #2
0
 public BookingFlightFunction(BookFlightService bookFlightService, SendGridService sendGridService, IBookingConfiguration configuration)
 {
     _bookFlightService = bookFlightService;
     _sendGridService   = sendGridService;
     _configuration     = configuration;
 }