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

Interface UserDao

ch4/UserDao.java:5–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import com.fastcampus.ch4.domain.*;
4
5public 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}

Callers 27

loginCheckMethod · 0.65
insertUserMethod · 0.65
deleteUserMethod · 0.65
selectUserMethod · 0.65
updateUserMethod · 0.65
deleteUserMethod · 0.65
insertUserMethod · 0.65
deleteUserMethod · 0.65
selectUserMethod · 0.65
updateUserMethod · 0.65
updateUserMethod · 0.65
countMethod · 0.65

Implementers 1

UserDaoImplch4/UserDaoImpl.java

Calls

no outgoing calls

Tested by

no test coverage detected