Esempio n. 1
0
 public Plane(string registration, int endinePower, int wingSpan, int loadCapacity, int netWeight,
              FlyingClass flyingClass, IWriter writer)
 {
     Registration = registration;
     EnginePower  = endinePower;
     WingSpan     = wingSpan;
     LoadCapacity = loadCapacity;
     NetWeight    = netWeight;
     FlyingClass  = flyingClass;
     logger       = writer;
 }
Esempio n. 2
0
 public Plane(string registration, int endinePower, int wingSpan, int loadCapacity, int netWeight,
              FlyingClass flyingClass) :
     this(registration, endinePower, wingSpan, loadCapacity, netWeight, flyingClass, null)
 {
 }