tbf/TestBenchFramework/BenchControl/GenericDevices/IResultsPrinter.cs
2015-04-15 20:32:56 +02:00

23 lines
655 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
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,
Entities.Procedure procedure,
IList<Entities.TestResult> results,
string title);
}
}