Esempio n. 1
0
 public string RemoveAttendanceDeductMaster(string strAttendanceDeductMasterId)
 {
     using (AttendanceDeductMasterBLL bllAttendanceDeductMaster = new AttendanceDeductMasterBLL())
     {
         return bllAttendanceDeductMaster.DeleteDeductMaster(strAttendanceDeductMasterId);
     }
 }
Esempio n. 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();
            }
        }
Esempio n. 3
0
 public string ModifyAttendanceDeductMaster(T_HR_ATTENDANCEDEDUCTMASTER entRd)
 {
     using (AttendanceDeductMasterBLL bllAttendanceDeductMaster = new AttendanceDeductMasterBLL())
     {
         return bllAttendanceDeductMaster.ModifyDeductMaster(entRd);
     }
 }
Esempio n. 4
0
 public T_HR_ATTENDANCEDEDUCTMASTER GetAttendanceDeductMasterByID(string strAttendanceDeductMasterId)
 {
     using (AttendanceDeductMasterBLL bllAttendanceDeductMaster = new AttendanceDeductMasterBLL())
     {
         return bllAttendanceDeductMaster.GetAttendanceDeductMasterByID(strAttendanceDeductMasterId);
     }
 }