1   
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  
15  
16  package org.kuali.hr.time.shiftdiff.rule.dao;
17  
18  import java.sql.Date;
19  import java.util.List;
20  
21  import org.kuali.hr.time.shiftdiff.rule.ShiftDifferentialRule;
22  
23  public interface ShiftDifferentialRuleDao {
24  
25  	public List<ShiftDifferentialRule> findShiftDifferentialRules(String location, String hrSalGroup, String payGrade, String pyCalendarGroup, Date 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, Date fromEffdt, Date toEffdt, String active, String showHist);
31  }