internal Car(uint doors, string color) { Wheels = 4; Doors = doors; Color = color; Tank = new GasTank(14.0); Engine = new Engine(8000); }