private void generateAccountStatement(bool asDialog) { if (m_currentInvoice != null && m_currentInvoice.patient != null) { Reporting.PatientAccountSummaryDialog dlg = new Reporting.PatientAccountSummaryDialog(m_currentInvoice.patient.patID, asDialog); dlg.ShowDialog(); } }
private void tsmiAccSummary_Click(object sender, EventArgs e) { if (m_patient != null) { Reporting.PatientAccountSummaryDialog dlg = new Reporting.PatientAccountSummaryDialog(m_patient.patID, false); dlg.ShowDialog(); } }