()
| 35 | } // int insert(String statement, Object parameter) |
| 36 | |
| 37 | @Override |
| 38 | public List<BoardDto> selectAll() throws Exception { |
| 39 | return session.selectList(namespace+"selectAll"); |
| 40 | } // List<E> selectList(String statement) |
| 41 | |
| 42 | public BoardDto select(Integer bno) throws Exception { |
| 43 | return session.selectOne(namespace + "select", bno); |
nothing calls this directly
no outgoing calls
no test coverage detected