Ejemplo n.º 1
0
        public TemperatureTest(VerificationTest verificationTest, decimal gauge)
        {
            VerificationTest   = verificationTest;
            VerificationTestId = VerificationTest.Id;

            Gauge = (double)gauge;
        }
Ejemplo n.º 2
0
 public PressureTest(VerificationTest verificationTest, decimal gauge) : base()
 {
     VerificationTest   = verificationTest;
     VerificationTestId = VerificationTest.Id;
     GasGauge           = decimal.Round(gauge, 2);
     AtmosphericGauge   = decimal.Round(DefaultAtmGauge, 2);
 }
Ejemplo n.º 3
0
        public VolumeTest(VerificationTest verificationTest, IDriveType driveType)
        {
            VerificationTest   = verificationTest;
            VerificationTestId = VerificationTest.Id;

            DriveType              = driveType;
            AppliedInput           = DriveType.MaxUnCorrected();
            DriveTypeDiscriminator = DriveType.Discriminator;
        }
Ejemplo n.º 4
0
 public SuperFactorTest(VerificationTest verificationTest)
 {
     VerificationTest = verificationTest;
 }