public AirportsController(ICountryRepository countryRepository, IAirportRepository airportRepository, IAirportVersionRepository airportVersionRepository, IAirportDepartureRepository airportDepartureRepository, IAirportArrivalRepository airportArrivalRepository, IAirportDetailRepository airportDetailRepository, IAirportGroundOpRepository airportGroundOpRepository, IAirportHazardRepository airportHazardRepository, IAirportTerrainRepository airportTerrainRepository, IRegionRepository regionRepository, IChartTypeRepository chartTypeRepository, IAirportChartRepository airportChartRepository, IAirportAlternateRepository airportAlternateRepository)
 {
     this.countryRepository = countryRepository;
     this.airportRepository = airportRepository;
     this.airportVersionRepository = airportVersionRepository;
     this.airportDepartureRepository = airportDepartureRepository;
     this.airportArrivalRepository = airportArrivalRepository;
     this.airportDetailRepository = airportDetailRepository;
     this.airportGroundOpRepository = airportGroundOpRepository;
     this.airportHazardRepository = airportHazardRepository;
     this.airportTerrainRepository = airportTerrainRepository;
     this.regionRepository = regionRepository;
     this.chartTypeRepository = chartTypeRepository;
     this.airportChartRepository = airportChartRepository;
     this.airportAlternateRepository = airportAlternateRepository;
 }
Example #2
0
 public UsersController(ICountryRepository countryRepository, IRankRepository rankRepository, IAirportRepository airportRepository,
     IUserRepository userRepository, ITypeRatingRepository typeRatingRepository, IFlightRepository flightRepository, IUserTypeRatingRepository userTypeRatingRepository,
     IAirportDepartureRepository airportDepartureRepository, IAirportArrivalRepository airportArrivalRepository, IAirportDetailRepository airportDetailRepository,
     IAirportTerrainRepository airportTerrainRepository, IAirportGroundOpRepository airportGroundOpRepository, IAirportHazardRepository airportHazardRepository
     )
 {
     this.countryRepository = countryRepository;
     this.rankRepository = rankRepository;
     this.airportRepository = airportRepository;
     this.userRepository = userRepository;
     this.typeRatingRepository = typeRatingRepository;
     this.flightRepository = flightRepository;
     this.userTypeRatingRepository = userTypeRatingRepository;
     this.airportDepartureRepository = airportDepartureRepository;
     this.airportArrivalRepository = airportArrivalRepository;
     this.airportDetailRepository = airportDetailRepository;
     this.airportTerrainRepository = airportTerrainRepository;
     this.airportGroundOpRepository = airportGroundOpRepository;
     this.airportHazardRepository = airportHazardRepository;
 }