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