1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.pm.positionreportcat.service;
17
18 import java.util.List;
19
20 import org.joda.time.LocalDate;
21 import org.kuali.kpme.pm.positionreportcat.PositionReportCategory;
22 import org.kuali.kpme.pm.positionreportcat.dao.PositionReportCatDao;
23
24 public class PositionReportCatServiceImpl implements PositionReportCatService {
25
26 private PositionReportCatDao positionReportCatDao;
27
28 @Override
29 public PositionReportCategory getPositionReportCatById(String pmPositionReportCatId) {
30 return positionReportCatDao.getPositionReportCatById(pmPositionReportCatId);
31 }
32
33 @Override
34 public List<PositionReportCategory> getPositionReportCatList(String positionReportCat, String positionReportType, String institution, String location, LocalDate asOfDate) {
35 return positionReportCatDao.getPositionReportCatList(positionReportCat, positionReportType, institution, location, asOfDate);
36 }
37
38 public PositionReportCatDao getPositionReportCatDao() {
39 return positionReportCatDao;
40 }
41
42 public void setPositionReportCatDao(PositionReportCatDao positionReportCatDao) {
43 this.positionReportCatDao = positionReportCatDao;
44 }
45
46 @Override
47 public PositionReportCategory getPositionReportCat(String positionReportCat, LocalDate asOfDate) {
48 return positionReportCatDao.getPositionReportCat(positionReportCat, asOfDate);
49 }
50 }