using System.Collections.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IResultsPrinter : IComponent
{
///
/// Prints the test cycle results, Events: Event.ResultsPrinted
///
/// Results to print
/// Reference to the operation
IOperation PrintResultsOp(BenchControl.BenchId.Component benchId,
IList waterMeters,
IList results,
string title);
}
}