Esempio n. 1
0
 public Car10(string model, Engine10 engine, string weight, string color)
 {
     this.Model  = model;
     this.Engine = engine;
     this.Weight = weight;
     this.Color  = color;
 }
Esempio n. 2
0
 public Car10(string model, Engine10 engine, string weight)
 {
     this.Model  = model;
     this.Engine = engine;
     this.Weight = weight;
 }
Esempio n. 3
0
 public Car10(string model, Engine10 engine)
 {
     this.Model  = model;
     this.Engine = engine;
 }