Files
laatzen/Common/Hardware/WaterMeter/WaterMeterCore/BatchActions/BatchCallInitCalibration.cs
T
2021-10-01 11:09:20 +02:00

13 lines
309 B
C#

namespace Xylem.Common.Hardware.WaterMeter.WaterMeterCore.BatchActions
{
/// <inheritdoc />
public class BatchCallInitCalibration : BatchCall
{
/// <inheritdoc />
public override void DoSingleAction(IMeter meter)
{
meter.InitCalibration();
}
}
}