CreateCourseSummaryReport() public method

public CreateCourseSummaryReport ( EventDB eventDB ) : string
eventDB EventDB
return string
Ejemplo n.º 1
0
        private void courseSummaryMenu_Click(object sender, EventArgs e)
        {
            Reports reportGenerator = new Reports();

            string testReport = reportGenerator.CreateCourseSummaryReport(controller.GetEventDB());

            ReportForm reportForm = new ReportForm(Util.RemoveHotkeyPrefix(courseSummaryMenu.Text), "", testReport, "ReportsCourseSummary.htm");
            reportForm.ShowDialog(this);
            reportForm.Dispose();
        }