Esempio n. 1
0
 public Intercooler(
     decimal price,
     int weight,
     int topSpeed,
     int acceleration,
     TunningGradeType gradeType,
     IntercoolerType IntercoolerType)
     : base(price, weight, acceleration, topSpeed)
 {
 }
Esempio n. 2
0
 public Intercooler(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     IntercoolerType intercoolerType)
     : base(
         price,
         weight,
         acceleration,
         topSpeed,
         gradeType)
 {
     this.intercoolerType = intercoolerType;
 }
Esempio n. 3
0
 public Intercooler(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     IntercoolerType intercoolerType)
 {
     this.id              = DataGenerator.GenerateId();
     this.Price           = price;
     this.Weight          = weight;
     this.Acceleration    = acceleration;
     this.TopSpeed        = TopSpeed;
     this.GradeType       = gradeType;
     this.IntercoolerType = intercoolerType;
 }
Esempio n. 4
0
 public Intercooler(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     IntercoolerType intercoolerType)
 {
     this.id = DataGenerator.GenerateId();
     this.Price = price;
     this.Weight = weight;
     this.Acceleration = acceleration;
     this.TopSpeed = TopSpeed;
     this.GradeType = gradeType;
     this.IntercoolerType = intercoolerType;
 }
Esempio n. 5
0
 public Intercooler(int weight, decimal price, int topSpeed, int acceleration, TunningGradeType type, IntercoolerType intercooler)
     : base(weight, price, topSpeed, acceleration, type)
 {
     this.IntercoolerType = intercooler;
 }
Esempio n. 6
0
 public Intercooler(int weight, decimal price, int topSpeed, int acceleration, TunningGradeType type, IntercoolerType intercooler)
     : base(weight, price, topSpeed, acceleration, type)
 {
     this.IntercoolerType = intercooler;
 }