| 6 | import java.util.List; |
| 7 | |
| 8 | public interface CommentDao { |
| 9 | int count(Integer bno) throws Exception; |
| 10 | int deleteAll(Integer bno); |
| 11 | int delete(Integer cno, String commenter) throws Exception; |
| 12 | int insert(CommentDto dto) throws Exception; |
| 13 | List<CommentDto> selectAll(Integer bno) throws Exception; |
| 14 | CommentDto select(Integer cno) throws Exception; |
| 15 | int update(CommentDto dto) throws Exception; |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected