public Car(string model, Engine engine, int weight, string color) : this(model, engine) { this.Weight = weight; this.Color = color; }
public Car(string model, Engine engine, int weight) : this(model, engine) { this.Weight = weight; }
public Car(string model, Engine engine, string color) : this(model, engine) { this.Color = color; }
public Car(string model, Engine engine) : this() { this.Model = model; this.Engine = engine; }