public AddToDayPage(Guid LiquidationToDayId)
 {
     InitializeComponent();
     this.BindingContext = viewModel = new AddToDayPageViewModel();
     Init();
     InitUpdate(LiquidationToDayId);
 }
 public AddToDayPage()
 {
     InitializeComponent();
     this.BindingContext = viewModel = new AddToDayPageViewModel();
     Init();
     InitAdd();
 }