public AirPortsController(IAirPlaneService AirPlaneService, IAirPortService AirPortService, IHelicopterService HelicopterService)
 {
     _AirPlaneService   = AirPlaneService;
     _AirPortService    = AirPortService;
     _HelicopterService = HelicopterService;
 }
示例#2
0
 public VacationPartFactory(IHotelService hotelService, IAirPlaneService airPlaneService)
 {
     this.hotelService    = hotelService;
     this.airPlaneService = airPlaneService;
 }