///
/// Copyright (c) 2013-2016 Sensus Metering Systems
///
using System.Collections.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IHasCycleEndForm
{
///
/// Water meter states typed in the cycle end form
///
string WMCycleEndState(int wmNr);
///
/// Displays form at the end of the cycle (usually to enter the end state).
///
/// Operation to be used in the sequence
IOperation ShowCycleEndFormOp();
}
}