27 lines
697 B
C#
27 lines
697 B
C#
///
|
|
/// Copyright (c) 2015-2018 Sensus Slovensko a.s.
|
|
///
|
|
using Config.Entities;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
/// <summary>
|
|
/// Bench information interface
|
|
/// </summary>
|
|
public interface IBenchInfo : IComponent
|
|
{
|
|
string TestBenchName { get; }
|
|
int TestBenchId { get; }
|
|
string Address1 { get; }
|
|
string Address2 { get; }
|
|
string Address3 { get; }
|
|
string Address4 { get; }
|
|
string Address5 { get; }
|
|
RemoteDBUse RemoteDBUse { get; }
|
|
#if ORACLE_DB
|
|
int MaxTestIndex { get; } /// (MaxPruefindex % 100) value when to reject water meters completely if they are NOK
|
|
#endif
|
|
}
|
|
}
|