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