1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.time.dept.lunch.dao;
17
18 import java.sql.Date;
19 import java.util.List;
20
21 import org.kuali.hr.time.dept.lunch.DeptLunchRule;
22
23 public interface DepartmentLunchRuleDao {
24 public DeptLunchRule getDepartmentLunchRule(String dept, Long workArea, String principalId, Long jobNumber, Date asOfDate);
25
26 public DeptLunchRule getDepartmentLunchRule(String tkDeptLunchRuleId);
27
28 List<DeptLunchRule> getDepartmentLunchRules(String dept, String workArea, String principalId, String jobNumber,
29 Date fromEffdt, Date toEffdt, String active, String showHistory);
30 }