12 lines
304 B
C#
12 lines
304 B
C#
using System.Collections.Generic;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IDataEntry : IComponent
|
|
{
|
|
IOperation ShowFormAtCycleBeginningOp(IList<IWaterMeter> waterMeters);
|
|
IOperation ShowFormAtCycleEndOp(IList<IWaterMeter> waterMeters);
|
|
}
|
|
}
|