/// /// 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 /// /// Results to write into a file /// Reference to the operation IOperation WriteResultsOp(string TestBenchId, Procedure procedure, IList waterMeters, IList results); } }