예제 #1
0
 public List<string> SalaryContrastAll(string SentEmployeeSalaryRecordID, out List<string> nowData, out List<string> lastData)
 {
     using (EmployeeSalaryRecordBLL bll = new EmployeeSalaryRecordBLL())
     {
         List<string> titleData = new List<string>();
         nowData = new List<string>();
         lastData = new List<string>();
         bll.SalaryContrast(SentEmployeeSalaryRecordID, out nowData, out lastData, out titleData);
         return titleData;
     }
 }
예제 #2
0
 public List<T_HR_EMPLOYEESALARYRECORD> SalaryContrast(string SentEmployeeSalaryRecordID)
 {
     List<T_HR_EMPLOYEESALARYRECORD> temp = new List<T_HR_EMPLOYEESALARYRECORD>();
     using (EmployeeSalaryRecordBLL bll = new EmployeeSalaryRecordBLL())
     {
         temp = bll.SalaryContrast(SentEmployeeSalaryRecordID);
         if (temp.Count > 0)
         {
             return temp;
         }
     }
     return null;
 }