public Galactica(string brand, int registration, bool cupHolder, Engine engine, Commander commander, CheifMate cheifMate, string color) : base(brand, registration, cupHolder, engine, commander, color)
 {
     CheifMate = cheifMate;
 }
示例#2
0
 public Vehicle(string brand, int registration, bool cupHolder, Engine engine, Commander commander, string color)
 {
     Brand        = brand;
     Registration = registration;
     CupHolder    = cupHolder;
     Engine       = engine;
     Commander    = commander;
     Color        = color;
 }
示例#3
0
 public GolfCart(string brand, int registration, bool cupHolder, Engine engine, Commander commander, string color) : base(brand, registration, cupHolder, engine, commander, color)
 {
 }