using System.Collections.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IHasCycleEndForm
{
///
/// 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);
}
}