Beispiel #1
0
 public Truck(string brand, VehicalColor color, double weight)
     : base(brand, color)
 {
     this.Weight = weight;
 }
Beispiel #2
0
 public Car(string brand, VehicalColor color, int passenger)
     : base(brand, color)
 {
     this.Passenger = passenger;
 }
Beispiel #3
0
 public Vehicle(string brand, VehicalColor color)
 {
     this.Brand = brand;
     this.Color = color;
 }