using System.Collections.Generic; using TBF.BenchControl.Generic; namespace TBF.BenchControl.GenericDevices { public interface IDataEntry : IComponent { IOperation ShowFormAtCycleBeginningOp(IList waterMeters); IOperation ShowFormAtCycleEndOp(IList waterMeters); } }