/// /// Copyright (c) 2013-2015 Sensus Metering Systems /// using System; using System.Collections.Generic; using System.Linq; using System.Text; using Config.Entities; namespace TBF.BenchControl { /// /// This class keeps the current values used or measured by the test bench. /// public class Current { /// /// Procedure, Tests and TestResults data /// public static Procedure Procedure; public static Test Test; public static int TestId = 0; public static TestResult TestResult; public static int TestResultId = 0; /// /// Measured data /// public static double StartMass; public static double StopMass; static Current() { } /// Constructor public Current() { /// There should always be some raw data } /// /// Processes current 'tick' data during measurement. /// public static void ProcessTickData() { } } }