13 lines
310 B
C#
13 lines
310 B
C#
namespace Xylem.Common.Hardware.WaterMeter.WaterMeterCore.BatchActions
|
|
{
|
|
/// <inheritdoc />
|
|
public class BatchCallTestBenchDispose: BatchCall
|
|
{
|
|
/// <inheritdoc />
|
|
public override void DoSingleAction(IMeter meter)
|
|
{
|
|
meter.TestBenchDispose();
|
|
}
|
|
}
|
|
}
|