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

Interface BoardService

ch4/BoardService.java:7–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import java.util.*;
6
7public interface BoardService {
8 int getCount() throws Exception;
9 int remove(Integer bno, String writer) throws Exception;
10 int write(BoardDto boardDto) throws Exception;
11 List<BoardDto> getList() throws Exception;
12 BoardDto read(Integer bno) throws Exception;
13 List<BoardDto> getPage(Map map) throws Exception;
14 int modify(BoardDto boardDto) throws Exception;
15
16 int getSearchResultCnt(SearchCondition sc) throws Exception;
17 List<BoardDto> getSearchResultPage(SearchCondition sc) throws Exception;
18}

Callers 23

listMethod · 0.65
removeMethod · 0.65
removeMethod · 0.65
removeMethod · 0.65
removeMethod · 0.65
writeMethod · 0.65
removeMethod · 0.65
writeMethod · 0.65
writeMethod · 0.65
writeMethod · 0.65
listMethod · 0.65
readMethod · 0.65

Implementers 1

BoardServiceImplch4/BoardServiceImpl.java

Calls

no outgoing calls

Tested by

no test coverage detected