35 lines
935 B
C#
35 lines
935 B
C#
///
|
|
/// Copyright (c) 2015-2023 Sensus Slovensko a.s.
|
|
///
|
|
using System.Collections.Generic;
|
|
using Common;
|
|
|
|
namespace TBF.Rig.GenericDevices
|
|
{
|
|
/// <summary>
|
|
/// Bench information interface
|
|
/// </summary>
|
|
public interface IBenchInfo : TBF.Rig.Generic.IComponent
|
|
{
|
|
string TestBenchName { get; }
|
|
int TestBenchId { get; }
|
|
string Address1 { get; }
|
|
string Address2 { get; }
|
|
string Address3 { get; }
|
|
string Address4 { get; }
|
|
string Address5 { get; }
|
|
int WaterMetersCount { get; }
|
|
int LinesCount { get; }
|
|
int CompoundMetersCount { get; }
|
|
ICollection<ProcedureSelection> Sources { get; }
|
|
Unit VolumeUnit { get; }
|
|
Unit FlowUnit { get; }
|
|
bool IsFromToInPct { get; }
|
|
Unit MassUnit { get; }
|
|
Unit TempUnit { get; }
|
|
Unit PressUnit { get; }
|
|
Unit LengthUnit { get; }
|
|
Unit ElectricUnit { get; }
|
|
}
|
|
}
|