1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.tklm.time.rules.shiftdifferential.dao;
17
18 import java.util.List;
19
20 import org.joda.time.LocalDate;
21 import org.kuali.kpme.tklm.time.rules.shiftdifferential.ShiftDifferentialRule;
22
23 public interface ShiftDifferentialRuleDao {
24
25 public List<ShiftDifferentialRule> findShiftDifferentialRules(String location, String hrSalGroup, String payGrade, String pyCalendarGroup, LocalDate asOfDate);
26 public ShiftDifferentialRule findShiftDifferentialRule(String id);
27 public void saveOrUpdate(ShiftDifferentialRule shiftDifferentialRule);
28 public void saveOrUpdate(List<ShiftDifferentialRule> shiftDifferentialRules);
29
30 public List<ShiftDifferentialRule> getShiftDifferentialRules(String location, String hrSalGroup, String payGrade, LocalDate fromEffdt, LocalDate toEffdt, String active, String showHist);
31 }