19 lines
555 B
C#
19 lines
555 B
C#
using System.Collections.Generic;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IResultsPrinter : IComponent
|
|
{
|
|
/// <summary>
|
|
/// Prints the test cycle results, Events: Event.ResultsPrinted
|
|
/// </summary>
|
|
/// <param name="results">Results to print</param>
|
|
/// <returns>Reference to the operation</returns>
|
|
IOperation PrintResultsOp(BenchControl.BenchId.Component benchId,
|
|
IList<IWaterMeter> waterMeters,
|
|
IList<Entities.TestResult> results,
|
|
string title);
|
|
}
|
|
}
|