/**
  * Synchronize $storageRepresentative with Cicero representative.
  * 
  * @param \Civix\CoreBundle\Entity\RepresentativeStorage $storageRepresentative
  * @return boolean
  */
 public function synchronizeRepresentative(RepresentativeStorage $storageRepresentative)
 {
     $ciceroRepresentative = $this->ciceroService->findRepresentativeByNameAndId($storageRepresentative->getFirstName(), $storageRepresentative->getLastName(), $storageRepresentative->getStorageId());
     $civixRepresentative = $storageRepresentative->getRepresentative();
     if ($ciceroRepresentative) {
         //update current data of representative from cicero
         $this->ciceroStorageService->fillStorRepresentativeByApiObj($storageRepresentative, $ciceroRepresentative);
         $this->entityManager->persist($storageRepresentative);
         //update representative in civix
         if ($civixRepresentative instanceof Representative) {
             $civixRepresentative->setOfficialTitle($storageRepresentative->getOfficialTitle());
             $civixRepresentative->setDistrict($storageRepresentative->getDistrict());
             $this->entityManager->persist($civixRepresentative);
             $this->entityManager->flush($civixRepresentative);
         }
         $this->entityManager->flush($storageRepresentative);
     } else {
         //unlink district and storage
         if ($civixRepresentative instanceof Representative) {
             $civixRepresentative->setDistrict(null);
             $civixRepresentative->setStorageId(null);
             $this->entityManager->persist($civixRepresentative);
             $this->entityManager->flush($civixRepresentative);
         }
         $this->entityManager->remove($storageRepresentative);
         $this->entityManager->flush($storageRepresentative);
         return false;
     }
     return true;
 }
 public function getRepresentative()
 {
     $this->__load();
     return parent::getRepresentative();
 }