Пример #1
0
        private void OnSearchAccount()
        {
            Account account = MainController.SearchAccount();

            if (account == null)
            {
                return;
            }

            DateTime transactionDate = MainController.LoggedUser.TransactionDate;

            _viewModel  = AccountVerifierGeneralLedgerViewModel.Refresh(account, transactionDate);
            DataContext = _viewModel;
        }