コード例 #1
0
 /// <summary>
 /// Method to generate report
 /// </summary>
 /// <param name="em"></param>
 public void GenerateReport(Employee0 em)
 {
     // Report generation with employee data using crystal report.
 }
コード例 #2
0
 /// <summary>
 /// This method used to insert into employee table
 /// </summary>
 /// <param name="em">Employee object</param>
 /// <returns>Successfully inserted or not</returns>
 public bool InsertIntoEmployeeTable(Employee0 em)
 {
     // Insert into employee table.
     return(true);
 }