public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd) { using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL()) { return(bllOverTimeRecord.AddOutApplyConfirm(entOTRd)); } }
public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd) { using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL()) { return bllOverTimeRecord.AddOutApplyConfirm(entOTRd); } }
public T_HR_OUTAPPLYCONFIRM GetOutApplyConfrimByID(string strOverTimeRecordId) { using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL()) { return(bllOverTimeRecord.GetOutApplyConfirmByID(strOverTimeRecordId)); } }
public T_HR_OUTAPPLYCONFIRM GetOutApplyConfrimByID(string strOverTimeRecordId) { using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL()) { return bllOverTimeRecord.GetOutApplyConfirmByID(strOverTimeRecordId); } }
public bool DeleteOutApplyConfrim(string[] strOverTimeRecordId) { using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL()) { int rslt = bll.DeleteOutApplyConfirm(strOverTimeRecordId); return(rslt > 0); } }
public string AuditOutApplyConfrim(string strOverTimeRecordID, string strCheckState) { using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL()) { string rslt = bllOverTimeRecord.AuditOutApplyConfirm(strOverTimeRecordID, strCheckState); return(rslt); } }
public string UpdateOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd) { using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL()) { if (bllOverTimeRecord.UpdateOutApplyConfirm(entOTRd) == 1) return "OK"; else return "Fail"; } }
public List <T_HR_OUTAPPLYCONFIRM> EmployeeOutApplyConfrimPaging(int pageIndex, int pageSize, string sort, string filterString, List <object> paras, ref int pageCount, string strCheckState, string strOwnerID) { using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL()) { var ents = bll.EmployeeOutApplyConfirmPaging(pageIndex, pageSize, sort, filterString, paras, ref pageCount, strCheckState, strOwnerID); if (ents == null) { return(null); } return(ents.ToList()); } }
public List<T_HR_OUTAPPLYCONFIRM> EmployeeOutApplyConfrimPaging(int pageIndex, int pageSize, string sort, string filterString, List<object> paras, ref int pageCount, string strCheckState, string strOwnerID) { using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL()) { var ents = bll.EmployeeOutApplyConfirmPaging(pageIndex, pageSize, sort, filterString, paras, ref pageCount, strCheckState, strOwnerID); if (ents == null) { return null; } return ents.ToList(); } }
public bool DeleteOutApplyConfrim(string[] strOverTimeRecordId) { using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL()) { int rslt = bll.DeleteOutApplyConfirm(strOverTimeRecordId); return (rslt > 0); } }
public string AuditOutApplyConfrim(string strOverTimeRecordID, string strCheckState) { using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL()) { string rslt = bllOverTimeRecord.AuditOutApplyConfirm(strOverTimeRecordID, strCheckState); return rslt; } }