1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.pm.positionreportsubcat.dao;
17
18 import java.util.List;
19
20 import org.joda.time.LocalDate;
21 import org.kuali.kpme.pm.positionreportsubcat.PositionReportSubCategory;
22
23 public interface PositionReportSubCatDao {
24 public PositionReportSubCategory getPositionReportSubCatById(String pmPositionReportSubCatId);
25
26 public List<PositionReportSubCategory> getPositionReportSubCat(String pstnRptSubCat, String institution, String location, LocalDate asOfDate);
27
28 public PositionReportSubCategory getPositionReportSubCat(String pstnRptSubCat, LocalDate asOfDate);
29 }