private void button1_Click(object sender, EventArgs e) { inlistNewPatient inlistForm = new inlistNewPatient(this); inlistForm.ShowDialog(); saveHistory(parent.patientList); refreshListBox(); }
private void buttonEdit_Click(object sender, EventArgs e) { inlistNewPatient inlistForm = new inlistNewPatient(this, currentPatientId); inlistForm.ShowDialog(); saveHistory(parent.patientList); refreshListBox(); }