MCPcopy Index your code
hub / github.com/JavaCourse00/JavaCourseCodes / UserDAO

Class UserDAO

01jvm/subinterface/UserDAO.java:3–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package subinterface;
2
3public class UserDAO implements UserMapper {
4
5 @Override
6 public void insert(User user) {
7 System.out.println("Insert user id: " + user.getId());
8 }
9}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected