Files
laatzen/Common/Ui/Common.GUI/ViewModels/Eregister/AutomaticInitializeVM.cs
T
2025-01-28 14:39:42 +01:00

31 lines
740 B
C#

namespace Common.GUI.ViewModels.Eregister
{
using Common.GUI.Models.Base;
using Common.GUI.ViewModels.Base;
using Common.Hardware.WaterMeter.eRegister;
public class AutomaticInitializeVM : ArgsVM<AutomaticInitializeVM>
{
private readonly EregisterFactory eregisterFactory;
private readonly int sharedId;
public AutomaticInitializeVM(Arguments arguments, EregisterFactory eregisterFactory) : base(arguments)
{
this.eregisterFactory = eregisterFactory;
this.sharedId = arguments.Get(0, 1);
this.InitializeVM();
}
public override void Dispose()
{
}
private void InitializeVM()
{
}
}
}