private void AddClientButton_Click(object sender, EventArgs e) { AddClientForm ACF = new AddClientForm(MKG, true); ACF.ShowDialog(); PersonName.Items.Add(MKG.ClientNames[MKG.ClientNames.CountOfClients - 1].Name); }
private void RemoveClientButton_Click(object sender, EventArgs e) { AddClientForm ACF = new AddClientForm(MKG, false); ACF.ShowDialog(); }