tbf/TestBenchFramework/BenchControl/GenericDevices/IHasWMStatesForm.cs

31 lines
864 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
namespace TBF.BenchControl.GenericDevices
{
public interface IHasWMStatesForm
{
/// <summary>
/// Water meter states on start of test
/// </summary>
float WMStartState(int wmNr);
/// <summary>
/// Water meter states at the end of test
/// </summary>
float WMEndState(int wmNr);
/// <summary>
/// Displays form at the beginning of the test to enter water meter start start.
/// </summary>
/// <returns>Operation to be used in the sequence</returns>
IOperation ShowTestStartFormOp();
/// <summary>
/// Displays form at the end of the test to enter water meter start start.
/// </summary>
/// <returns>Operation to be used in the sequence</returns>
IOperation ShowTestEndFormOp(float volumeRef, float errLimLo, float errLimHi);
}
}