(Integer bno)
| 33 | } |
| 34 | |
| 35 | @Override |
| 36 | public BoardDto read(Integer bno) throws Exception { |
| 37 | BoardDto boardDto = boardDao.select(bno); |
| 38 | boardDao.increaseViewCnt(bno); |
| 39 | |
| 40 | return boardDto; |
| 41 | } |
| 42 | |
| 43 | @Override |
| 44 | public List<BoardDto> getPage(Map map) throws Exception { |
nothing calls this directly
no test coverage detected