Example #1
0
 public Motorcycle(Human driver, string name, string model, string color)
     : base(driver, name, model, color)
 {
 }
Example #2
0
 public Horse(Human driver, string name, string model, string color)
     : base(driver, name, model, color)
 {
 }