예제 #1
0
 public User getByEmail(String email) {
   return userDao.getByEmail(email);
 }
예제 #2
0
 public User getById(Long id) {
   return userDao.getById(id);
 }
예제 #3
0
 public void update(User user) {
   userDao.update(user);
 }
예제 #4
0
 public Long save(User user) {
   return userDao.save(user);
 }