/**
  * @param Custodian $custodian
  * @return CustodianListDTO
  */
 public function custodianToCustodianListDTO(Custodian $custodian)
 {
     $custodianListDTO = new CustodianListDTO();
     $custodianListDTO->id = $custodian->getId();
     $custodianListDTO->title = $custodian->getTitle();
     $custodianListDTO->firstname = $custodian->getFirstname();
     $custodianListDTO->telephone = $custodian->getTelephone();
     $custodianListDTO->lastname = $custodian->getLastname();
     $custodianListDTO->street = $custodian->getAddress()->getStreet();
     $custodianListDTO->city = $custodian->getAddress()->getCity();
     return $custodianListDTO;
 }