Exemple #1
0
        protected void ShowAccountsWindowExecuted()
        {
            var accWindow = new AccountsWindow(_core);

            accWindow.ShowDialog();
        }
    public bool?ShowAccountDialogForCustomer(Customer customer)
    {
        var accountsWindow = new AccountsWindow(customer, _accountRepository, _accountValidator, this);

        return(accountsWindow.ShowDialog());
    }
        private void EditAccounts_Click(object sender, RoutedEventArgs e)
        {
            AccountsWindow accountsWindow = new AccountsWindow();
            accountsWindow.ShowDialog();

            InitAccounts();
        }