Exemple #1
0
 public Car(
     string i_modelName,
     string i_licenseNumber,
     string i_wheelManufacturer,
     float i_intialAirPressure,
     float i_amountEnergyResource,
     e_Color i_color,
     e_NumberOfDoors i_numberOfDoors)
     : base(i_modelName, i_licenseNumber, i_wheelManufacturer, GlobalConstants.carNumberOfWheels, GlobalConstants.carMaxAirPressure, i_intialAirPressure, i_amountEnergyResource)
 {
     this.m_color         = i_color;
     this.m_numberOfDoors = i_numberOfDoors;
 }