Esempio n. 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.
            }
        }
Esempio n. 2
0
 public override void GenerateReport(policyInformation em)
 {
     // Generate PDF report.
 }
Esempio n. 3
0
 public virtual void GenerateReport(policyInformation em)
 {
     // From base
 }
Esempio n. 4
0
        /// <summary>
        /// Method to generate report
        /// </summary>

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