///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
namespace TBF.BenchControl.GenericDevices
{
public interface IHasWMStatesForm
{
///
/// Water meter states set by forms
///
float WMState(int wmNr);
///
/// Displays form at the beginning of the cycle (usually to enter S/N).
///
/// Watermetes to be updated by the operation
/// Operation to be used in the sequence
IOperation ShowWMStatesFormOp();
}
}