public EngineControlUnit(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     EngineControlUnitType engineControlUnitType) : base(price, weight, acceleration, topSpeed, gradeType)
 {
 }
Exemple #2
0
 public EngineControlUnit(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     EngineControlUnitType engineControlUnitType)
 {
 }
Exemple #3
0
 public EngineControlUnit(
     decimal price,
     int weight,
     int topSpeed,
     int acceleration,
     TunningGradeType gradeType,
     EngineControlUnitType engineControlUnitType)
     : base(price, weight, acceleration, topSpeed)
 {
     this.GradeType             = gradeType;
     this.EngineControlUnitType = engineControlUnitType;
 }
Exemple #4
0
 public EngineControlUnit(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     EngineControlUnitType engineControlUnitType)
 {
     this.id           = DataGenerator.GenerateId();
     this.Price        = price;
     this.Weight       = weight;
     this.Acceleration = acceleration;
     this.TopSpeed     = topSpeed;
 }
 public EngineControlUnit(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     EngineControlUnitType engineControlUnitType)
 {
     this.id = DataGenerator.GenerateId();
     this.Price = price;
     this.Weight = weight;
     this.Acceleration = acceleration;
     this.TopSpeed = topSpeed;
 }
Exemple #6
0
 public EngineControlUnit(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     EngineControlUnitType engineControlUnitType)
 {
     this.Price                 = price;
     this.Weight                = weight;
     this.Acceleration          = acceleration;
     this.TopSpeed              = topSpeed;
     this.GradeType             = gradeType;
     this.EngineControlUnitType = engineControlUnitType;
 }
 protected EngineControlUnit(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, EngineControlUnitType engineControlUnitType)
     : base(price, weight, acceleration, topSpeed, gradeType)
 {
     this.EngineControlUnitType = engineControlUnitType;
 }