public CombustionMotorcycle(string i_WheelManufacturerName, string i_ModelName, string i_LicensePlate) : base(2, 30, i_WheelManufacturerName, i_ModelName, i_LicensePlate) { Tank = new Tank(EnergyType.Octan96, 6); }
public Truck(string i_WheelManufacturerName, string i_ModelName, string i_LicensePlate) : base(12, 28, i_WheelManufacturerName, i_ModelName, i_LicensePlate) { Tank = new Tank(EnergyType.Soler, 115f); }
public ElectricCar(string i_WheelManufacturerName, string i_ModelName, string i_LicensePlate) : base(4, 32, i_WheelManufacturerName, i_ModelName, i_LicensePlate) { Tank = new Tank(EnergyType.Electricity, 3.2f); }