/**
  *
  * @param int $placeId
  * @return BOL_Scheme
  */
 public function findSchemeByPlaceId($placeId, $entityId)
 {
     $placeSchemeDto = $this->placeSchemeDao->findPlaceScheme($placeId, $entityId);
     if (!$placeSchemeDto) {
         return null;
     }
     return $this->schemeDao->findById($placeSchemeDto->schemeId);
 }