Exemple #1
0
 public FlightsController(IFlightsService flightsService, IDestinationsService destinationsService, IFlightCompaniesService flightCompaniesService)
 {
     this.flightsService         = flightsService;
     this.destinationsService    = destinationsService;
     this.flightCompaniesService = flightCompaniesService;
 }
 public FlightCompaniesController(IFlightCompaniesService flightCompaniesService)
 {
     this.flightCompaniesService = flightCompaniesService;
 }