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