private void btnPatientSnapShot_Click(object sender, EventArgs e)
        {
            Patient patient = new DatabaseAccess().loadPatient(3);

            GlobalFormManager.OpenNewForm(new PatientSnapshot(patient), this);
            GlobalFormManager.CloseCurrentForm(this);
        }
Beispiel #2
0
 private void btnBack_Click(object sender, EventArgs e)
 {
     GlobalFormManager.OpenNewForm(new MainMenu(), this);
     GlobalFormManager.CloseCurrentForm(this);
 }
 private void btnBack_Click(object sender, EventArgs e)
 {
     GlobalFormManager.OpenNewForm(new QueryManager(logic.queryEntityCollection), this);
     GlobalFormManager.CloseCurrentForm(this);
 }