示例#1
0
 public string RemoveAttendanceDeductMaster(string strAttendanceDeductMasterId)
 {
     using (AttendanceDeductMasterBLL bllAttendanceDeductMaster = new AttendanceDeductMasterBLL())
     {
         return bllAttendanceDeductMaster.DeleteDeductMaster(strAttendanceDeductMasterId);
     }
 }
示例#2
0
        public List<T_HR_ATTENDANCEDEDUCTMASTER> GetAttendanceDeductMasterRdListByMultSearch(string strOwnerID, string strAttType,
            string strSortKey, int pageIndex, int pageSize, ref int pageCount)
        {
            using (AttendanceDeductMasterBLL bllAttendanceDeductMaster = new AttendanceDeductMasterBLL())
            {
                var ents = bllAttendanceDeductMaster.GetAttendanceDeductMasterRdListByMultSearch(strOwnerID, strAttType, strSortKey, pageIndex, pageSize, ref pageCount).ToList();

                if (ents == null)
                {
                    return null;
                }
                return ents.ToList();
            }
        }
示例#3
0
 public string ModifyAttendanceDeductMaster(T_HR_ATTENDANCEDEDUCTMASTER entRd)
 {
     using (AttendanceDeductMasterBLL bllAttendanceDeductMaster = new AttendanceDeductMasterBLL())
     {
         return bllAttendanceDeductMaster.ModifyDeductMaster(entRd);
     }
 }
示例#4
0
 public T_HR_ATTENDANCEDEDUCTMASTER GetAttendanceDeductMasterByID(string strAttendanceDeductMasterId)
 {
     using (AttendanceDeductMasterBLL bllAttendanceDeductMaster = new AttendanceDeductMasterBLL())
     {
         return bllAttendanceDeductMaster.GetAttendanceDeductMasterByID(strAttendanceDeductMasterId);
     }
 }