(Integer bno, String writer)
| 7 | public 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; |