Exemple #1
0
 public LandingAircraftCreationData(IAircraftId id, ILandingAircraftCreationMoments creationMoments,
                                    ILandingAircraftCreationIntervals creationIntervals, int runwayIndex)
 {
     Id                = id;
     RunwayId          = runwayIndex;
     CreationMoments   = creationMoments;
     CreationIntervals = creationIntervals;
 }
Exemple #2
0
 public TakingOffAircraftCreationData(IAircraftId id, ITakingOffAircraftCreationMoments creationMoments,
                                      ITakingOffAircraftCreationIntervals creationIntervals, IRunway runway,
                                      ISpecPlatform specPlatform, bool processingIsNeeded)
 {
     Id = id;
     CreationMoments    = creationMoments;
     CreationIntervals  = creationIntervals;
     Runway             = runway;
     SpecPlatform       = specPlatform;
     ProcessingIsNeeded = processingIsNeeded;
 }