Пример #1
0
 public string RemoveAttendanceDeductDetail(string strDeductDetailId)
 {
     using (AttendanceDeductDetailBLL bllAttendanceDeductDetail = new AttendanceDeductDetailBLL())
     {
         return bllAttendanceDeductDetail.DeleteDeductDetail(strDeductDetailId);
     }
 }
Пример #2
0
        public List<T_HR_ATTENDANCEDEDUCTDETAIL> GetAttendanceDeductDetailRdListByMultSearch(string strOwnerID, string strDeductMasterID,
            string strSortKey, int pageIndex, int pageSize, ref int pageCount)
        {
            using (AttendanceDeductDetailBLL bllAttendanceDeductDetail = new AttendanceDeductDetailBLL())
            {
                var ents = bllAttendanceDeductDetail.GetAttendanceDeductDetailRdListByMultSearch(strOwnerID, strDeductMasterID, strSortKey, pageIndex, pageSize, ref pageCount);

                if (ents == null)
                {
                    return null;
                }

                return ents.ToList();
            }
        }
Пример #3
0
 public string ModifyAttendanceDeductDetail(T_HR_ATTENDANCEDEDUCTDETAIL entRd)
 {
     using (AttendanceDeductDetailBLL bllAttendanceDeductDetail = new AttendanceDeductDetailBLL())
     {
         return bllAttendanceDeductDetail.ModifyDeductDetail(entRd);
     }
 }
Пример #4
0
 public T_HR_ATTENDANCEDEDUCTDETAIL GetAttendanceDeductDetailByID(string strDeductDetailId)
 {
     using (AttendanceDeductDetailBLL bllAttendanceDeductDetail = new AttendanceDeductDetailBLL())
     {
         return bllAttendanceDeductDetail.GetAttendanceDeductDetailByID(strDeductDetailId);
     }
 }