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