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

19 lines
553 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System.Collections.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IResultsWriter : IComponent
{
/// <summary>
/// Writes the test cycle results into a file, Events: Event.ResultsWritten
/// </summary>
/// <param name="results">Results to write into a file</param>
/// <returns>Reference to the operation</returns>
IOperation WriteResultsOp(Entities.Procedure procedure, IList<Entities.TestResult> results);
}
}