- new component with VZ15 and modified position of VZ13 - fixed start method evaluation OK - handling of entry forms cleaned-up
15 lines
490 B
C#
15 lines
490 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IHasCycleEndForm
|
|
{
|
|
/// <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);
|
|
}
|
|
}
|