2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
2017-06-29 09:18:58 +00:00
|
|
|
|
/// Copyright (c) 2013-2017 Sensus Metering Systems
|
2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
using System.Collections.Generic;
|
2014-09-23 11:16:59 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IHasCycleBeginForm
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Displays form at the beginning of the cycle (usually to enter S/N).
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>Operation to be used in the sequence</returns>
|
2016-01-04 16:55:39 +00:00
|
|
|
|
IOperation ShowCycleBeginFormOp();
|
2014-09-23 11:16:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|