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