private void openAccountType(MoneyDataSet.AccountTypesRow accountType)
        {
            AccountTypeForm form = new AccountTypeForm(accountType);

            if (form.ShowDialog(this) == DialogResult.OK)
            {
                fillAccountTypes();
            }
        }
 private void openAccountType(MoneyDataSet.AccountTypesRow accountType)
 {
     AccountTypeForm form = new AccountTypeForm(accountType);
     if (form.ShowDialog(this) == DialogResult.OK)
     {
         fillAccountTypes();
     }
 }