Пример #1
0
 public Vehicle(EManufacturer manufacturer, float maxSpeed, float price, EColor color)
 {
     this.manufacturer = manufacturer;
     this.MaxSpeed     = maxSpeed;
     this.Price        = price;
     this.color        = color;
 }
Пример #2
0
 public Ambulance(EManufacturer manufacturer, float maxSpeed, float price, EColor color)
     : base(manufacturer, maxSpeed, price, color)
 {
 }
Пример #3
0
 public EnemyCar(EManufacturer manufacturer, float maxSpeed, float price, EColor color) :
     base(manufacturer, maxSpeed, price, color)
 {
 }
Пример #4
0
 public Automobile(EManufacturer manufacturer, float maxSpeed, float price, EColor color)
     : base(manufacturer, maxSpeed, price, color)
 {
 }