Beispiel #1
0
 public TunningPart(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType)
 {
     this.id = DataGenerator.GenerateId();
     this.Price = price;
     this.Weight = weight;
     this.Acceleration = acceleration;
     this.TopSpeed = TopSpeed;
     this.GradeType = gradeType;
 }
Beispiel #2
0
 public EngineControlUnit(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     EngineControlUnitType engineControlUnitType)
 {
 }
Beispiel #3
0
 public Exhaust(
    decimal price,
    int weight,
    int acceleration,
    int topSpeed,
    TunningGradeType gradeType,
    ExhaustType exhaustType)
 {
     this.exhaustType = exhaustType;
 }
Beispiel #4
0
 public Intercooler(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     Intercooler intercooler)
 {
     this.intercooler = intercooler;
 }
Beispiel #5
0
 public Motor(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     int horsepower,
     TunningGradeType gradeType,
     CylinderType cylinderType,
     MotorType engineType)
 {
 }
Beispiel #6
0
 public Turbocharger(decimal price,
                     int weight, int acceleration, int topSpeed,
                     TunningGradeType tunningGrade, TurbochargerType turbochargerType)
 {
     this.Price            = price;
     this.Weight           = weight;
     this.Acceleration     = acceleration;
     this.TopSpeed         = topSpeed;
     this.GradeType        = tunningGrade;
     this.TurbochargerType = turbochargerType;
 }
Beispiel #7
0
 public YokohamaAdvanTiresSet(decimal price, int weight,
                              int acceleration, int topSpeed, TunningGradeType tunningGrade,
                              TransmissionType transmissionType)
     : base(YokohamaAdvanTirePriceInUSADollars,
            YokohamaAdvanTireWeightInGrams,
            YokohamaAdvanTireAccelerationBonus,
            YokohamaAdvanTireTopSpeedBonus,
            TunningGradeType.MidGrade,
            TireType.AllTerrainTire)
 {
 }
 public TiresSet(decimal price, int weight,
                 int acceleration, int topSpeed, TunningGradeType tunningGrade,
                 TireType tireType)
 {
     this.Price        = price;
     this.Weight       = weight;
     this.Acceleration = acceleration;
     this.TopSpeed     = topSpeed;
     this.GradeType    = tunningGrade;
     this.TireType     = tireType;
 }
Beispiel #9
0
 protected Exhaust(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     ExhaustType exhaustType)
     : base(price, weight, acceleration, topSpeed, gradeType)
 {
     this.ExhaustType = exhaustType;
 }
Beispiel #10
0
 public Motor(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     int horsepower,
     TunningGradeType gradeType,
     CylinderType cylinderType,
     MotorType engineType)
 {
 }
Beispiel #11
0
 public Transmission(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     TransmissionType transmissionType)
     : base(price, weight, acceleration, topSpeed, gradeType)
 {
     this.transmissionType = transmissionType;
 }
Beispiel #12
0
 public Transmission(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     TransmissionType transmissionType)
     : base(price, weight, acceleration, topSpeed, gradeType)
 {
     this.transmissionType = transmissionType;
 }
Beispiel #13
0
 public TunningPart(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType)
 {
     this.acceleration = acceleration;
     this.topSpeed = topSpeed;
     this.price = price;
     this.gradeType = gradeType;
 }
Beispiel #14
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;
 }
Beispiel #15
0
 public Exhaust(
     decimal price,
     int weight,
     int topSpeed,
     int acceleration,
     TunningGradeType gradeType,
     ExhaustType exhaustType)
     : base(price, weight, acceleration, topSpeed)
 {
     this.exhaustType = exhaustType;
     this.GradeType   = gradeType;
 }
Beispiel #16
0
 public TunningPart(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType)
 {
     this.acceleration = acceleration;
     this.topSpeed     = topSpeed;
     this.price        = price;
     this.gradeType    = gradeType;
 }
Beispiel #17
0
 public FalkenAzenisTiresSet(decimal price, int weight,
                             int acceleration, int topSpeed, TunningGradeType tunningGrade,
                             TransmissionType transmissionType)
     : base(
         FalkenAzenisTirePriceInUSADollars,
         FalkenAzenisTireWeightInGrams,
         FalkenAzenisTireAccelerationBonus,
         FalkenAzenisTireTopSpeedBonus,
         TunningGradeType.LowGrade,
         TireType.OffRoadTire)
 {
 }
Beispiel #18
0
 public ZX8ParallelTwinTurbocharger(decimal price,
                                    int weight,
                                    int acceleration,
                                    int topSpeed,
                                    TunningGradeType tunningGrade,
                                    TurbochargerType turbochargerType)
     : base(ZX8ParallelTwinTurbochargerPrice,
            ZX8ParallelTwinTurbochargerWeight,
            ZX8ParallelTwinTurbochargerAcceleration,
            ZX8ParallelTwinTurbochargerTopSpeed,
            Zx8ParallelTwinTurbochargerTunningGradeType,
            Zx8ParallelTwinTurbochargerType)
 {
 }
 public RemusExhaust(decimal price,
                     int weight,
                     int acceleration,
                     int topSpeed,
                     TunningGradeType gradeType,
                     ExhaustType exhaustType)
     : base(RemusExhaustPrice,
            RemusExhaustWeight,
            RemusAcceleration,
            RemusExhaustTopSpeed,
            RemusExhaustGradeType,
            RemusExhaustExhaustType)
 {
 }
 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;
 }
Beispiel #21
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;
 }
Beispiel #22
0
 public TiresSet(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     TireType tireType)
     : base(price,
           weight,
           acceleration,
           topSpeed,
           gradeType)
 {
 }
 public MagnaflowExhaust(decimal price,
                         int weight,
                         int acceleration,
                         int topSpeed,
                         TunningGradeType gradeType,
                         ExhaustType exhaustType)
     : base(MagnaflowExhaustPrice,
            MagnaflowExhaustWeight,
            MagnaflowAcceleration,
            MagnaflowExhaustTopSpeed,
            MagnaflowExhaustGradeType,
            MagnaflowExhaustExhaustType)
 {
 }
Beispiel #24
0
 public VortexR35SequentialTurbocharger(decimal price,
                                        int weight,
                                        int acceleration,
                                        int topSpeed,
                                        TunningGradeType tunningGrade,
                                        TurbochargerType turbochargerType)
     : base(VortexR35SequentialTurbochargerPrice,
            VortexR35SequentialTurbochargerWeight,
            VortexR35SequentialTurbochargerAcceleration,
            VortexR35SequentialTurbochargerTopSpeed,
            VortexR35SequentialTurbochargerTunningGradeType,
            VortexR35SequentialTurbochargerTurbochargerType)
 {
 }
Beispiel #25
0
 public Exhaust(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     ExhaustType exhaustType)
 {
     this.id           = DataGenerator.GenerateId();
     this.Price        = price;
     this.Weight       = weight;
     this.Acceleration = acceleration;
     this.TopSpeed     = topSpeed;
     this.ExhaustType  = exhaustType;
 }
Beispiel #26
0
 protected Motor(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     int horsepower,
     TunningGradeType gradeType,
     CylinderType cylinderType,
     MotorType engineType)
     : base(price, weight, acceleration, topSpeed, gradeType)
 {
     this.Horsepower   = horsepower;
     this.CylinderType = cylinderType;
     this.EngineType   = engineType;
 }
Beispiel #27
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;
 }
Beispiel #28
0
 public TiresSet(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     TireType tireType)
     : base(
         price,
         weight,
         acceleration,
         topSpeed,
         gradeType)
 {
 }
 public EngineControlUnit(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     EngineControlUnitType engineControlUnitType)
     : base(
         price,
         weight,
         acceleration,
         topSpeed,
         gradeType)
 {
 }
Beispiel #30
0
 public Exhaust(
    decimal price,
    int weight,
    int acceleration,
    int topSpeed,
    TunningGradeType gradeType,
    ExhaustType exhaustType)
 {
     this.id = DataGenerator.GenerateId();
     this.Price = price;
     this.Weight = weight;
     this.Acceleration = acceleration;
     this.TopSpeed = topSpeed;
     this.ExhaustType = exhaustType;
 }
Beispiel #31
0
 public Turbocharger(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType grade,
     TurbochargerType turbochargerType)
     : base(
         price,
         weight,
         acceleration,
         topSpeed,
         grade)
 {
     this.turbochargerType = turbochargerType;
 }
Beispiel #32
0
 public Intercooler(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     IntercoolerType intercoolerType)
     : base(
         price,
         weight,
         acceleration,
         topSpeed,
         gradeType)
 {
     this.intercoolerType = intercoolerType;
 }
Beispiel #33
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;
 }
 public BorlaExhaust(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     TunningGradeType gradeType,
     ExhaustType exhaustType)
     : base(
         BorlaExhaustPrice,
         BorlaExhaustWeight,
         BorlaAcceleration,
         BorlaExhaustTopSpeed,
         BorlaExhaustGradeType,
         BorlaExhaustExhaustType)
 {
 }
Beispiel #35
0
 public Motor(
     decimal price,
     int weight,
     int acceleration,
     int topSpeed,
     int horsepower,
     TunningGradeType gradeType,
     CylinderType cylinderType,
     MotorType engineType)
 {
     this.Price        = price;
     this.Weight       = weight;
     this.Acceleration = acceleration;
     this.TopSpeed     = topSpeed;
     this.Horsepower   = horsepower;
     this.GradeType    = gradeType;
     this.CylinderType = cylinderType;
     this.EngineType   = engineType;
 }
Beispiel #36
0
 protected TiresSet(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, TireType tyreType)
     : base(price, weight, acceleration, topSpeed, gradeType)
 {
     this.TireType = tyreType;
 }
Beispiel #37
0
 public Exhaust(int weight, decimal price, int topSpeed, int acceleration, TunningGradeType type, ExhaustType exhaustType)
     : base(weight, price, topSpeed, acceleration, type)
 {
     this.exhaustType = exhaustType;
 }
Beispiel #38
0
 public EvolutionXPerformanceIntercooler(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, Intercooler intercooler)
     : base(price, weight, acceleration, topSpeed, gradeType, intercooler)
 {
 }
Beispiel #39
0
 protected TunningPart(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType) :
     base(price, weight, acceleration, topSpeed)
 {
     this.GradeType = gradeType;
 }
Beispiel #40
0
 public RemusExhaust(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, ExhaustType exhaustType)
     : base(price, weight, acceleration, topSpeed, gradeType, exhaustType)
 {
 }
Beispiel #41
0
 public Transmission(int weight, decimal price, int topSpeed, int acceleration, TunningGradeType type, TransmissionType transmissionType)
     : base(weight, price, topSpeed, acceleration, type)
 {
     this.TransmissionType = transmissionType;
 }
Beispiel #42
0
 public ViperGenieIntercooler(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, Intercooler intercooler)
     : base(price, weight, acceleration, topSpeed, gradeType, intercooler)
 {
 }
Beispiel #43
0
 public Intercooler(int weight, decimal price, int topSpeed, int acceleration, TunningGradeType type, IntercoolerType intercooler)
     : base(weight, price, topSpeed, acceleration, type)
 {
     this.IntercoolerType = intercooler;
 }
 public ZX8ParallelTwinTurbocharger(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, TurbochargerType type)
     : base(price, weight, acceleration, topSpeed, gradeType, type)
 {
 }
 protected EngineControlUnit(decimal price, int weight, int acceleration, int topSpeed, TunningGradeType gradeType, EngineControlUnitType engineControlUnitType)
     : base(price, weight, acceleration, topSpeed, gradeType)
 {
     this.EngineControlUnitType = engineControlUnitType;
 }