/// /// 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 { /// /// Writes the test cycle results into a file, Events: Event.ResultsWritten /// /// Reference to the operation IOperation WriteResultsOp(Results.Entities.Batch batchResults); } }