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