tbf/TestBenchFramework/BenchControl/GenericDevices/IResultsWriter.cs
2015-12-17 09:31:41 +01:00

23 lines
640 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System.Collections.Generic;
using Config.Entities;
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(string TestBenchId,
Procedure procedure,
IList<IWaterMeter> waterMeters,
IList<TestResult> results);
}
}