19 lines
509 B
C#
19 lines
509 B
C#
///
|
|
/// 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
|
|
{
|
|
/// <summary>
|
|
/// Reads information on start of a cycle, Events: Event.InfoRead
|
|
/// </summary>
|
|
/// <returns>Reference to the operation</returns>
|
|
IOperation ReadStartInfoOp(IList<Results.Entities.WaterMeter> waterMeters);
|
|
}
|
|
}
|