private void EditBankAccount(int?id) { var editor = new BankAccount_Form(AccountsOM.GetEditBankAccountVM(id), AccountsOM, TransactionsOM); editor.Show(); }
private void EditBankAccount(int?id) { var editor = new BankAccount_Modal(AccountsOM.GetEditBankAccountVM(id), AccountsOM, TransactionsOM, EditTransaction, UpdateCallback); editor.Show(); }