public bool GetCompyanSalaryHasApproved(string Companyid) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { return bll.GetCompyanSalaryHasApproved(Companyid); } }
public int SalaryRecordBatchDelete(string[] SalaryRecordBatchIDs) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { return bll.SalaryRecordBatchDelete(SalaryRecordBatchIDs); } }
public void AssignPersonMoneyNew(string strCheckState, string Companyid, string createUserID,ref string strMsg) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { bll.AssignPersonMoney(strCheckState, Companyid, createUserID, ref strMsg); } }
public bool SalaryRecordBatchAdd(T_HR_SALARYRECORDBATCH entity, string[] salaryrecordids) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { return bll.SalaryRecordBatchAdd(entity, salaryrecordids); } }
public void SalaryRecordBatchUpdate(T_HR_SALARYRECORDBATCH entity) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { bll.SalaryRecordBatchUpdate(entity); } }
public bool CheckSalaryAuditState(ref string strMsg, string filterString, string[] paras) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { return bll.GetSalaryBatchAuditState(ref strMsg, filterString, paras); } }
public T_HR_SALARYRECORDBATCH GetSalaryRecordBatchByID(string SalaryRecordBatchID) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { return bll.GetSalaryRecordBatchByID(SalaryRecordBatchID); } }
public List<string> GetSalaryRecordAuditSum(string sort, string filterString, string[] paras, DateTime starttime, DateTime endtime, int orgtype, string orgid, string strCheckState, string userID, out List<string> nameData) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { return bll.GetSalaryRecordAuditSum(sort, filterString, paras, starttime, endtime, orgtype, orgid, strCheckState, userID, out nameData); } }
public DataSetData GetAuditSalaryRecords(int pageIndex, int pageSize, string sort, string filterString, string[] paras, ref int pageCount, DateTime starttime, DateTime endtime, int orgtype, string orgid, string strCheckState, string userID) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { var q = bll.GetAuditSalaryRecords(pageIndex, pageSize, sort, filterString, paras, ref pageCount, starttime, endtime, orgtype, orgid, strCheckState, userID); return q; } }
public List<V_EMPLOYEESALARYRECORD> GetMassAuditSalaryRecordPagings(int pageIndex, int pageSize, string sort, string filterString, string[] paras, ref int pageCount, DateTime starttime, DateTime endtime, int orgtype, string orgid, string strCheckState, string userID) { using (SalaryRecordBatchBLL bll = new SalaryRecordBatchBLL()) { IQueryable<V_EMPLOYEESALARYRECORD> q = bll.GetMassAuditSalaryRecordPagings(pageIndex, pageSize, sort, filterString, paras, ref pageCount, starttime, endtime, orgtype, orgid, strCheckState, userID); if (q != null) { return q.Count() > 0 ? q.ToList() : null; } else { return null; } } }