/// /// Copyright (c) 2013-2015 Sensus Metering Systems /// using System; using TBF.BenchControl; namespace TBF.UiBridge { public class TestSelectedEventArgs : EventArgs { public Config.Entities.Test Test; public int RepetitionNr; public FeedingPath FeedingPath; public BenchPath BenchPath; public OutputPath OutputPath; public MetersPath MetersPath; public int TotalPulses; public TestSelectedEventArgs(Config.Entities.Test test, int repetitionNr, FeedingPath f, BenchPath b, OutputPath o, MetersPath m, int tp) { Test = test; RepetitionNr = repetitionNr; FeedingPath = f; BenchPath = b; OutputPath = o; MetersPath = m; TotalPulses = tp; } } }