예제 #1
0
        /// <summary>
        /// Handles the Click event of the auditExportManagerToolStripMenuItem control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private void auditExportManagerToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AuditExport ae = new AuditExport();

            ae.Show();
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="AuditExportDetails"/> class.
 /// </summary>
 /// <param name="au">The au.</param>
 /// <param name="entity">The entity.</param>
 public AuditExportDetails(AuditExport au, string entity)
 {
     this.au     = au;
     this.entity = entity;
     InitializeComponent();
 }