23 lines
633 B
C#
23 lines
633 B
C#
///
|
|
/// Copyright (c) 2013-2017 Sensus Metering Systems
|
|
///
|
|
using System.Collections.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IHasCycleBeginForm
|
|
{
|
|
/// <summary>
|
|
/// Purchase order selected/typed in the cycle beginning form.
|
|
/// When PurchaseOrder==null the purchase order entry was disabled.
|
|
/// </summary>
|
|
string PurchaseOrder { get; }
|
|
|
|
/// <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();
|
|
}
|
|
}
|