27 lines
807 B
C#
27 lines
807 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using System.Collections.Generic;
|
|
using Config.Entities;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IResultsPrinter : IComponent
|
|
{
|
|
/// <summary>
|
|
/// Prints the test cycle results, Events: Event.ResultsPrinted
|
|
/// </summary>
|
|
/// <param name="batchResults">Results to print</param>
|
|
/// <param name="title">Title of the printed protocol</param>
|
|
/// <returns>Reference to the operation</returns>
|
|
IOperation PrintResultsOp(Results.BatchResults batchResults, string title);
|
|
|
|
/// <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; }
|
|
}
|
|
}
|