Example #1
0
 public Motorcycle(Color color, Transmission transmission, int numberOfWheels, int horsePower)
 {
     this.Color = color;
     this.Transmission = transmission;
     this.NumberOfWheels = numberOfWheels;
     this.HoresPower = horsePower;
 }
Example #2
0
 public Bike(Color color, Transmission transmission, int numberOfWheels)
 {
     this.Color = color;
     this.Transmission = transmission;
     this.NumberOfWheels = numberOfWheels;
 }