private void btAddPatient_Click(object sender, EventArgs e) { var addPatientForm = new AddPatientForm(); addPatientForm.PatientAddEvent += new AddPatientForm.PatientAddHandler(addPatientForm_PatientUpdateEvent); addPatientForm.ShowDialog(); }
private void btAddPatient_Click(object sender, EventArgs e) { var addPatientForm = new AddPatientForm(); addPatientForm.PatientAddEvent +=new AddPatientForm.PatientAddHandler(addPatientForm_PatientUpdateEvent); addPatientForm.ShowDialog(); }