31 lines
727 B
C#
31 lines
727 B
C#
///
|
|
/// Copyright (c) 2015-2021 Sensus Slovensko a.s.
|
|
///
|
|
using Common;
|
|
using Config;
|
|
using TBF.Rig.Generic;
|
|
|
|
namespace TBF.Rig.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; }
|
|
Unit VolumeUnit { get; }
|
|
Unit FlowUnit { get; }
|
|
Unit MassUnit { get; }
|
|
Unit TempUnit { get; }
|
|
Unit PressUnit { get; }
|
|
Unit LengthUnit { get; }
|
|
}
|
|
}
|