| 3 | import com.fastcampus.ch4.domain.*; |
| 4 | |
| 5 | public interface UserDao { |
| 6 | User selectUser(String id) throws Exception; |
| 7 | int deleteUser(String id) throws Exception; |
| 8 | int insertUser(User user) throws Exception; |
| 9 | int updateUser(User user) throws Exception; |
| 10 | int count() throws Exception; |
| 11 | void deleteAll() throws Exception; |
| 12 | } |
no outgoing calls
no test coverage detected