///
/// Copyright (c) 2018 Sensus Slovensko a.s.
///
using System;
using System.Collections.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IStartInfoReader : IComponent
{
///
/// Reads information on start of a cycle, Events: Event.InfoRead
///
/// Reference to the operation
IOperation ReadStartInfoOp(IList waterMeters);
}
}