/**
  * Creates a SettingsEntityHydrator
  */
 public function __construct()
 {
     parent::__construct();
     $this->addFilter('ignoreInternalProperties', function ($property) {
         return "_" != $property[0];
     });
 }
 public function __construct($repOrganization, $repOrganizationName, $repOrganizationImage)
 {
     parent::__construct();
     $this->repOrganization = $repOrganization;
     $this->repOrganizationName = $repOrganizationName;
     $this->repOrganizationImage = $repOrganizationImage;
 }