コード例 #1
0
 @Override
 public int deleteUserProfile(long profileID) throws Exception {
   return userProfileDao.deleteUserProfile(profileID);
 }
コード例 #2
0
 @Override
 public UserProfile selectUserProfileByID(long profileID) throws Exception {
   return userProfileDao.selectUserProfileByID(profileID);
 }
コード例 #3
0
 @Override
 public int updateUserProfile(UserProfile userProfile) throws Exception {
   return userProfileDao.updateUserProfile(userProfile);
 }
コード例 #4
0
 @Override
 public List<UserProfile> selectAllUserProfile() throws Exception {
   return userProfileDao.selectAllUserProfile();
 }