MCPcopy Index your code
hub / github.com/castello/spring_basic / BoardDao

Interface BoardDao

ch4/BoardDao.java:7–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import java.util.*;
6
7public 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}

Callers 43

readMethod · 0.65
readMethod · 0.65
removeMethod · 0.65
writeMethod · 0.65
selectTestMethod · 0.65
updateTestMethod · 0.65
increaseViewCntTestMethod · 0.65
removeMethod · 0.65
removeMethod · 0.65
deleteAllMethod · 0.65
deleteMethod · 0.65
deleteTestMethod · 0.65

Implementers 1

BoardDaoImplch4/BoardDaoImpl.java

Calls

no outgoing calls

Tested by

no test coverage detected