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