예제 #1
0
 public List<V_SalarySummary> GetSalarySummary(int pageIndex, int pageSize, string sort, string filterString, IList<object> paras, ref int pageCount, string userID, string year, string month, bool IsPageing)
 {
     using (EmployeeSalaryRecordItemBLL bll = new EmployeeSalaryRecordItemBLL())
     {
         return bll.GetSalarySummary(pageIndex, pageSize, sort, filterString, paras, ref  pageCount, userID, year, month, IsPageing);
     }
 }
예제 #2
0
 public List<V_MonthDeductionTax> GetMonthDeductionTaxs(int pageIndex, int pageSize, string sort, string filterString, IList<object> paras, ref int pageCount, string userID, bool IsPageing)
 {
     using (EmployeeSalaryRecordItemBLL bll = new EmployeeSalaryRecordItemBLL())
     {
         return bll.GetMonthDeductionTaxs(pageIndex, pageSize, sort, filterString, paras, ref  pageCount, userID, IsPageing);
     }
 }
예제 #3
0
 public T_HR_EMPLOYEESALARYRECORDITEM GetSalaryItemByID(string SalaryItemSetID)
 {
     using (EmployeeSalaryRecordItemBLL bll = new EmployeeSalaryRecordItemBLL())
     {
         return bll.GetSalaryItemByID(SalaryItemSetID);
     }
 }
예제 #4
0
 public int EmployeeSalaryRecordItemDelete(string EmployeeSalaryRecordID)
 {
     using (EmployeeSalaryRecordItemBLL bll = new EmployeeSalaryRecordItemBLL())
     {
         return bll.EmployeeSalaryRecordItemDelete(EmployeeSalaryRecordID);
     }
 }
예제 #5
0
 public List<V_EMPLOYEESALARYRECORDITEM> GetEmployeeSalaryRecordItemByID(string SalaryRecordID)
 {
     using (EmployeeSalaryRecordItemBLL bll = new EmployeeSalaryRecordItemBLL())
     {
         return bll.GetEmployeeSalaryRecordItemByID(SalaryRecordID);
     }
 }
예제 #6
0
 public byte[] ExportEmployeeDeductionMoney(int pageIndex, int pageSize, string sort, string filterString, IList<object> paras, ref int pageCount, string userID, string year, string month, bool IsPageing)
 {
     using (EmployeeSalaryRecordItemBLL bll = new EmployeeSalaryRecordItemBLL())
     {
         return bll.ExportEmployeeDeductionMoney(pageIndex, pageSize, sort, filterString, paras, ref  pageCount, userID, year, month, IsPageing);
     }
 }