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