public FlightController(IFlight flightService, IAirport airportService, IAirPlane airPlaneService, IFlightHelpersServices flightHelpersServices)
 {
     _airportService        = airportService;
     _airPlaneService       = airPlaneService;
     _flightService         = flightService;
     _flightHelpersServices = flightHelpersServices;
 }
Esempio n. 2
0
 public AirPlainController(IAirPlane airPlane, IBrand brand, IDetail detail, IAirPort airPort, IGallery gallery)
 {
     _brand    = brand;
     _detail   = detail;
     _airport  = airPort;
     _gallery  = gallery;
     _airplane = airPlane;
 }
Esempio n. 3
0
 public FlightController(IFlight flight, IDetail detail, IAirPlane airPlane, IAirPort airPort, IFlightStatus flightStatus, IGate gate, IWeather weather, ITypeDetail typeDetail, ICustomer customer, ICustomerFlight customerFlight, IAirline airline, ICity city, IAddress address)
 {
     _flight         = flight;
     _detail         = detail;
     _airPlane       = airPlane;
     _airport        = airPort;
     _flightStatus   = flightStatus;
     _gate           = gate;
     _Weatger        = weather;
     _TypeDetail     = typeDetail;
     _customer       = customer;
     _customerFlight = customerFlight;
     _airline        = airline;
     _city           = city;
     _address        = address;
 }
 public AirPlaneLogic(IAirPlane iAirPlane,
                      IAirPlaneModel iAirPlaneModel)
 {
     this._IAirPlane      = iAirPlane;
     this._IAirPlaneModel = iAirPlaneModel;
 }
 public AppAirPlane(IAirPlane iAirPlane)
 {
     this._IAirPlane = iAirPlane;
 }
Esempio n. 6
0
 public HomeController(IAirport airportService, IAirPlane airplaneService)
 {
     _airportService  = airportService;
     _airplaneService = airplaneService;
 }