///
/// Copyright (c) 2013-2016 Sensus Metering Systems
///
using System.Collections.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IHasCycleBeginForm
{
///
/// Purchase order selected/typed in the cycle beginning form
///
string PurchaseOrder { get; }
///
/// Water meter serial numbers typed in the cycle beginning form
///
string SerialNr(int wmNr);
///
/// Water meter not present/disregarded information (default = false = present)
///
bool Disabled(int wmNr);
///
/// Displays form at the beginning of the cycle (usually to enter S/N).
///
/// Operation to be used in the sequence
IOperation ShowCycleBeginFormOp();
}
}