common/Hardware/WaterMeter/WaterMeterCore/BatchActions/BatchCallInitCalibration.cs
2026-04-23 17:50:07 +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();
}
}
}