///
/// 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
{
///
/// Prints the test cycle results, Events: Event.ResultsPrinted
///
/// Results to print
/// Title of the printed protocol
/// Reference to the operation
IOperation PrintResultsOp(Results.Entities.Batch batch, string title);
///
/// When true printing at the end of cycle is bypassed.
/// Can be used to disable printing without having to modify all procedures.
///
bool SupressPrinting { get; }
}
}