14 lines
422 B
C#
14 lines
422 B
C#
|
|
|
|||
|
|
namespace TBF.BenchControl.GenericDevices
|
|||
|
|
{
|
|||
|
|
public interface IHasWMStatesForm
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Displays form at the beginning of the cycle (usually to enter S/N).
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="waterMeters">Watermetes to be updated by the operation</param>
|
|||
|
|
/// <returns>Operation to be used in the sequence</returns>
|
|||
|
|
IOperation ShowWMStatesFormOp();
|
|||
|
|
}
|
|||
|
|
}
|