/**
  * Check if $institution has a property type value of $value
  *
  * @param Institution $institution
  * @param InstitutionPropertyType $propertyType
  * @param mixed $value
  * @return boolean
  * @deprecated added for BC
  */
 public function hasPropertyValue(Institution $institution, InstitutionPropertyType $propertyType, $value)
 {
     return $this->institutionPropertyService->hasPropertyValue($institution, $propertyType, $value);
 }