private void button1_Click(object sender, EventArgs e) { //new account POCO.Account account = new POCO.Account(); account.ClientID = clientId; Form accountForm = new NewAccountForm(account); accountForm.ShowDialog(); business.Save(account); reload(); }
public NewAccountForm(POCO.Account account) { InitializeComponent(); this.account = account; }