2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
|
|
|
|
///
|
|
|
|
|
|
using System.Collections.Generic;
|
2015-12-04 16:17:20 +00:00
|
|
|
|
using Config.Entities;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
using TBF.BenchControl.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IResultsPrinter : IComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Prints the test cycle results, Events: Event.ResultsPrinted
|
|
|
|
|
|
/// </summary>
|
2016-01-04 16:55:39 +00:00
|
|
|
|
/// <param name="batchResults">Results to print</param>
|
|
|
|
|
|
/// <param name="title">Title of the printed protocol</param>
|
2014-07-28 07:54:35 +00:00
|
|
|
|
/// <returns>Reference to the operation</returns>
|
2016-01-06 20:39:52 +00:00
|
|
|
|
IOperation PrintResultsOp(Results.Entities.Batch batch, string title);
|
2015-04-19 14:48:46 +00:00
|
|
|
|
|
|
|
|
|
|
/// <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; }
|
2014-07-28 07:54:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|