public string RemoveLeaveTypeSet(string strLeaveTypeSetId) { using (LeaveTypeSetBLL bllLeaveTypeSet = new LeaveTypeSetBLL()) { return bllLeaveTypeSet.DeleteLeaveTypeSet(strLeaveTypeSetId); } }
public string ModifyLeaveTypeSet(T_HR_LEAVETYPESET entLTRd) { using (LeaveTypeSetBLL bllLeaveTypeSet = new LeaveTypeSetBLL()) { return bllLeaveTypeSet.ModifyLeaveTypeSet(entLTRd); } }
public List<T_HR_LEAVETYPESET> GetLeaveTypeSetRdListByMultSearch(string strOwnerID, string strLeaveTypeValue, string strSortKey, int pageIndex, int pageSize, ref int pageCount) { using (LeaveTypeSetBLL bllLeaveTypeSet = new LeaveTypeSetBLL()) { var ents = bllLeaveTypeSet.GetLeaveTypeSetRdListByMultSearch(strOwnerID, strLeaveTypeValue, strSortKey, pageIndex, pageSize, ref pageCount); if (ents == null) { return null; } return ents.ToList(); } }
public List<T_HR_LEAVETYPESET> GetLeaveTypeSetAll(string employeeID) { using (LeaveTypeSetBLL bll = new LeaveTypeSetBLL()) { return bll.GetLeaveTypeSetAll(employeeID); }; }
public List<T_HR_LEAVETYPESET> GetLeaveTypeSetRdListForAttendanceSolution(string strAttendanceSolutionId, string strSortKey) { using (LeaveTypeSetBLL bllLeaveTypeSet = new LeaveTypeSetBLL()) { var ents = bllLeaveTypeSet.GetLeaveTypeSetRdListForAttendanceSolution(strAttendanceSolutionId, strSortKey); if (ents == null) { return null; } return ents.ToList(); } }
public T_HR_LEAVETYPESET GetLeaveTypeSetByID(string strLeaveTypeSetId) { using (LeaveTypeSetBLL bllLeaveTypeSet = new LeaveTypeSetBLL()) { return bllLeaveTypeSet.GetLeaveTypeSetByID(strLeaveTypeSetId); } }