23 lines
667 B
C#
23 lines
667 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using System.Collections.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IHasCycleEndForm
|
|
{
|
|
/// <summary>
|
|
/// Water meter states typed in the cycle end form
|
|
/// </summary>
|
|
string WMCycleEndState(int wmNr);
|
|
|
|
/// <summary>
|
|
/// Displays form at the end of the cycle (usually to enter the end state).
|
|
/// </summary>
|
|
/// <param name="waterMeters">Watermetes to be updated by the operation</param>
|
|
/// <returns>Operation to be used in the sequence</returns>
|
|
IOperation ShowCycleEndFormOp(IList<IWaterMeter> waterMeters);
|
|
}
|
|
}
|