1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.lm.leaveblock.dao;
17
18 import java.util.Date;
19 import java.util.List;
20
21 import org.kuali.hr.lm.leaveblock.LeaveBlockHistory;
22
23 public interface LeaveBlockHistoryDao {
24
25 public void saveOrUpdate(LeaveBlockHistory leaveBlockHistory);
26 public void saveOrUpdate(List<LeaveBlockHistory> leaveBlockHistoryList);
27 public List<LeaveBlockHistory> getLeaveBlockHistoryByLmLeaveBlockId(String lmLeaveBlockId);
28 public List<LeaveBlockHistory> getLeaveBlockHistories(String principalId, List<String> requestStatus);
29
30 public List<LeaveBlockHistory> getLeaveBlockHistoriesForLeaveDisplay(String principalId, Date beginDate, Date endDate, boolean considerModifiedUser);
31 public List<LeaveBlockHistory> getLeaveBlockHistories(String principalId,String requestStatus, String action, Date currentDate);
32
33 }