/**
  * Get the profile work associated with the client orcid and the workId
  *
  * @param clientOrcid The client orcid
  * @param workId The id of the work that will be updated
  * @return the profileWork object
  */
 public ProfileWorkEntity getProfileWork(String clientOrcid, String workId) {
   return profileWorkDao.getProfileWork(clientOrcid, workId);
 }