tbf/TBF/UiBridge/TestSelectedEventArgs.cs
2021-06-18 15:35:46 +02:00

33 lines
786 B
C#

///
/// Copyright (c) 2013-2015 Sensus Slovensko a.s.
///
using System;
using TBF.Rig;
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 HeatMetersPath HeatMetersPath;
public int TotalPulses;
public TestSelectedEventArgs(Config.Entities.Test test, int repetitionNr, FeedingPath f, BenchPath b, OutputPath o, MetersPath m, HeatMetersPath h)
{
Test = test;
RepetitionNr = repetitionNr;
FeedingPath = f;
BenchPath = b;
OutputPath = o;
MetersPath = m;
HeatMetersPath = h;
TotalPulses = 0; /// TODO
}
}
}