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); } }
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); } }
public T_HR_EMPLOYEESALARYRECORDITEM GetSalaryItemByID(string SalaryItemSetID) { using (EmployeeSalaryRecordItemBLL bll = new EmployeeSalaryRecordItemBLL()) { return bll.GetSalaryItemByID(SalaryItemSetID); } }
public int EmployeeSalaryRecordItemDelete(string EmployeeSalaryRecordID) { using (EmployeeSalaryRecordItemBLL bll = new EmployeeSalaryRecordItemBLL()) { return bll.EmployeeSalaryRecordItemDelete(EmployeeSalaryRecordID); } }
public List<V_EMPLOYEESALARYRECORDITEM> GetEmployeeSalaryRecordItemByID(string SalaryRecordID) { using (EmployeeSalaryRecordItemBLL bll = new EmployeeSalaryRecordItemBLL()) { return bll.GetEmployeeSalaryRecordItemByID(SalaryRecordID); } }
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); } }