Add skeleton to generate employee report

This commit is contained in:
kougyoku 2019-10-08 10:49:09 -07:00
parent 2b2054d14a
commit fd6d682a04
1 changed files with 5 additions and 0 deletions

View File

@ -35,5 +35,10 @@ namespace QueueSys
// Exits the application.
private void exitAltF4ToolStripMenuItem_Click(object sender, EventArgs e) => Application.Exit();
private void generateReportToolStripMenuItem_Click(object sender, EventArgs e)
{
MessageBox.Show("To-do: Generate excel report from SQL Database.");
}
}
}