Exemplo n.º 1
0
 public CombustionEngineProperty(EngineMaterial material, int power, int torque, int capacity, int cylindersCount)
     : base(material, power, torque)
 {
     Capacity       = capacity;
     CylindersCount = cylindersCount;
 }
Exemplo n.º 2
0
 public ElectricEngineProperty(EngineMaterial material, int power, int torque, int ratedVoltage)
     : base(material, power, torque)
 {
     RatedVoltage = ratedVoltage;
 }
Exemplo n.º 3
0
 protected EngineProperty(EngineMaterial material, int power, int torque)
 {
     Material = material;
     Power    = power;
     Torque   = torque;
 }