@Override
 public int deleteUserProfile(long profileID) throws Exception {
   return userProfileDao.deleteUserProfile(profileID);
 }
 @Override
 public UserProfile selectUserProfileByID(long profileID) throws Exception {
   return userProfileDao.selectUserProfileByID(profileID);
 }
 @Override
 public int updateUserProfile(UserProfile userProfile) throws Exception {
   return userProfileDao.updateUserProfile(userProfile);
 }
 @Override
 public List<UserProfile> selectAllUserProfile() throws Exception {
   return userProfileDao.selectAllUserProfile();
 }