using System; using System.Collections.Generic; using TBF.BenchControl; namespace TBF.BenchControl.BenchId { /// /// Holds information identifying the test bench. /// public class Component : ComponentBase, Generic.IComponent { readonly ComponentCfg benchIdCfg; public static void ResetStaticProperties() { } public int TestBenchNr { get { return benchIdCfg.TestBenchNr; } } public Component(ComponentCfg cfg) : base(cfg) { if (cfg == null) throw new ArgumentNullException("cfg"); this.benchIdCfg = cfg; } } }