示例#1
0
        /// <summary>
        /// Method to generate report
        /// </summary>
        /// <param name="em"></param>
        public void GenerateReport(policyInformation em)

        {
            if (ReportType == "CRS")
            {
                // Report generation with employee data in Crystal Report.
            }
            if (ReportType == "PDF")
            {
                // Report generation with employee data in PDF.
            }
        }
示例#2
0
 public override void GenerateReport(policyInformation em)
 {
     // Generate PDF report.
 }
示例#3
0
 public virtual void GenerateReport(policyInformation em)
 {
     // From base
 }
示例#4
0
        /// <summary>
        /// Method to generate report
        /// </summary>

        public void GenerateReport(policyInformation em)
        {
            // Report generation with employee data using crystal report.
        }
示例#5
0
 public bool insertPolicyTable(policyInformation em)
 {
     // Insert into employee table.
     return(true);
 }