| 5 | import java.util.*; |
| 6 | |
| 7 | public interface BoardDao { |
| 8 | BoardDto select(Integer bno) throws Exception; |
| 9 | int delete(Integer bno, String writer) throws Exception; |
| 10 | int insert(BoardDto dto) throws Exception; |
| 11 | int update(BoardDto dto) throws Exception; |
| 12 | int increaseViewCnt(Integer bno) throws Exception; |
| 13 | |
| 14 | List<BoardDto> selectPage(Map map) throws Exception; |
| 15 | List<BoardDto> selectAll() throws Exception; |
| 16 | int deleteAll() throws Exception; |
| 17 | int count() throws Exception; |
| 18 | |
| 19 | int searchResultCnt(SearchCondition sc) throws Exception; |
| 20 | List<BoardDto> searchSelectPage(SearchCondition sc) throws Exception; |
| 21 | } |
no outgoing calls
no test coverage detected