/*
* @see org.sete.service.admin.SeteUserProfileService#createNewSeteUserProfile(org.sete.vo.admin.CreateSeteUserProfileVo)
*/
public void createNewSeteUserProfile(CreateSeteUserProfileVo csupvo) {
SeteUser su = userDao.findById(Integer.valueOf(csupvo.getCreator())) ;
//contactInformation
ContactInformation ci = new ContactInformation();
ci.setAddress(csupvo.getAddress());
ci.setEmailAddress(csupvo.getEmailAddress());
ci.setPhoneNumber( csupvo.getPhoneNumber());
su.setContactInformation(ci);
try{
seteUserDao.saveSeteUser(su);
}
catch(Exception e){