31 lines
740 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|