コード例 #1
0
 public BookingController(IBookingService service, IBookingMapper mapper, IConfiguration configuration)
 {
     this.service       = service;
     this.mapper        = mapper;
     this.configuration = configuration;
 }
コード例 #2
0
 public CreateBookingCommand(Booking booking, IBookingMapper mapper)
 {
     this.booking = booking;
     this.mapper  = mapper;
 }
コード例 #3
0
 public BookingProxy(IPartitionClientFactory <CommunicationClient <IBookFastBookingAPI> > partitionClientFactory, IBookingMapper mapper)
 {
     this.partitionClientFactory = partitionClientFactory;
     this.mapper = mapper;
 }
コード例 #4
0
 public BookingController(IBookingService service, IBookingMapper mapper)
 {
     this.service = service;
     this.mapper  = mapper;
 }
コード例 #5
0
 public BookingController(IBookingService service, IBookingMapper mapper, IOptions <TestOptions> testOptions)
 {
     this.service     = service;
     this.mapper      = mapper;
     this.testOptions = testOptions.Value;
 }
コード例 #6
0
 public BookingProxy(IBookingMapper mapper, IApiClientFactory <IBookFastBookingAPI> apiClientFactory)
 {
     this.mapper           = mapper;
     this.apiClientFactory = apiClientFactory;
 }
コード例 #7
0
 public BookingDataSource(BookFastContext context, IBookingMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }