コード例 #1
0
 public DistanceController(
     IAirportQueryService airportQueryService,
     IAirportsCommandHandler airportsCommandHandler)
 {
     _airportQueryService    = airportQueryService;
     _airportsCommandHandler = airportsCommandHandler;
 }
コード例 #2
0
 public AirportsController(IAirportQueryService airportQueryService, ICountryQueryService countryQueryService)
 {
     _airportQueryService = airportQueryService;
     _countryQueryService = countryQueryService;
 }
コード例 #3
0
 public AirportsCommandHandler(IAirportQueryService airportQueryService)
 {
     _airportQueryService = airportQueryService;
 }