19 lines
394 B
C#
19 lines
394 B
C#
///
|
|
/// Copyright (c) 2016 Sensus Metering Systems
|
|
///
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IHasHeatMtrStatesForm : IHasWMStatesForm
|
|
{
|
|
/// <summary>
|
|
/// Water meter states on start of test
|
|
/// </summary>
|
|
double EnergyStartState(int wmNr);
|
|
|
|
/// <summary>
|
|
/// Water meter states at the end of test
|
|
/// </summary>
|
|
double EnergyEndState(int wmNr);
|
|
}
|
|
}
|