- fixed a bug in displayng results and progress controls when two tests had the same name - some work on data entry forms for FixedStartMassCollection method - not finished yet
15 lines
316 B
C#
15 lines
316 B
C#
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IWaterMeter : IComponent
|
|
{
|
|
string Producer { get; }
|
|
float Qn { get; }
|
|
string ApprovalInfo { get; }
|
|
string MetrologicalClass { get; }
|
|
string SerialNr { get; set; }
|
|
string EndState { get; set; }
|
|
}
|
|
}
|