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