17 lines
423 B
C#
17 lines
423 B
C#
///
|
|
/// Copyright (c) 2013-2017 Sensus Metering Systems
|
|
///
|
|
using System.Collections.Generic;
|
|
|
|
namespace TBF.Rig.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>
|
|
IOperation ShowCycleBeginFormOp();
|
|
}
|
|
}
|