public T_HR_EMPLOYEEEVECTIONRECORD GetEmployeeEvectionRecordByID(string strID) { using (EmployeeEvectionRecordBLL bll = new EmployeeEvectionRecordBLL()) { return bll.GetEmployeeEvectionRecordByID(strID); } }
public bool EmployeeEvectionRecordDelete(string[] evectionRecordIDs) { using (EmployeeEvectionRecordBLL bll = new EmployeeEvectionRecordBLL()) { int rslt = bll.EmployeeEvectionRecordDelete(evectionRecordIDs); return (rslt > 0); } }
public void AddEmployeeEvectionRdList(List<T_HR_EMPLOYEEEVECTIONRECORD> entTempList) { using (EmployeeEvectionRecordBLL bll = new EmployeeEvectionRecordBLL()) { bll.AddEvectionRdList(entTempList); } }
public void EmployeeEvectionRecordUpdate(T_HR_EMPLOYEEEVECTIONRECORD entity) { using (EmployeeEvectionRecordBLL bll = new EmployeeEvectionRecordBLL()) { bll.EmployeeEvectionRecordUpdate(entity); } }
public List<T_HR_EMPLOYEEEVECTIONRECORD> EmployeeEvectionRecordPaging(string strOwnerID, string strEmployeeID, string strDateFrom, string strDateTo, string strSortKey, int pageIndex, int pageSize, ref int pageCount) { using (EmployeeEvectionRecordBLL bll = new EmployeeEvectionRecordBLL()) { var ents = bll.EmployeeEvectionRecordPaging(strOwnerID, strEmployeeID, strDateFrom, strDateTo, strSortKey, pageIndex, pageSize, ref pageCount); if (ents == null) { return null; } return ents.ToList(); } }