24 lines
703 B
C#
24 lines
703 B
C#
///
|
|
/// Copyright (c) 2013-2020 Sensus Slovensko a.s.
|
|
///
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IResultsPrinter : IResultsProcessor
|
|
{
|
|
/// <summary>
|
|
/// Prints results fo one batch of water meters.
|
|
/// Events: Event.ResultsPrinted, Event.Busy
|
|
/// </summary>
|
|
/// <param name="batch">Results of a batch of water meters</param>
|
|
/// <returns>Reference to the operation</returns>
|
|
IOperation ProcessResultsOp(Results.Entities.Batch batch);
|
|
|
|
/// <summary>
|
|
/// When true printing at the end of cycle is bypassed.
|
|
/// Can be used to disable printing without having to modify all procedures.
|
|
/// </summary>
|
|
bool SupressPrinting { get; }
|
|
}
|
|
}
|