private void ToolStripMenuItemPatiant_Click(object sender, EventArgs e)
 {
     BasicData.FrmPatient frm = new BasicData.FrmPatient();
     frm.ShowDialog();
 }
 private void ToolStripMenuItemPatiant_Click(object sender, EventArgs e)
 {
     BasicData.FrmPatient frm = new BasicData.FrmPatient();
     frm.ShowDialog();
 }
 private void btn_AddPatient_Click(object sender, EventArgs e)
 {
     FrmPatient frm = new FrmPatient();
     frm.FormClosed += FrmPatientClosed;
     frm.ShowDialog();
 }