updateProfile(profile);
}
public void updateProfile(Profile profile) {
if(profile.getEnteredId()!=null) {
User enteredBy = userDao.get(profile.getEnteredId());
profile.setEnteredBy(enteredBy);
}
if(profile.getModifiedId()!=null) {
User modifiedBy = userDao.get(profile.getModifiedId());
profile.setModifiedBy(modifiedBy);
}
if(profile.getProjectId()!=null) {
Project project = projectDao.get(profile.getProjectId());
profile.setProject(project);