tbf/TestBenchFramework/BenchControl/GenericDevices/IWaterMeter.cs
Milan Hanajik 54ef1e1216 - added BenchControl/Operations/ProcessDataLoggingOp.cs (forgotten in previous commits)
- 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
2014-09-16 16:09:07 +02:00

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; }
}
}