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(IList results);
}
}