public function resetCustomization($place, $entityId)
 {
     $placeId = $this->findPlaceId($place);
     $componentIdList = $this->componentPlaceDao->findAdminComponentIdList($placeId, $entityId);
     $this->componentPlaceDao->deleteByIdList($componentIdList);
     $positionIdList = $this->componentPositionDao->findAllPositionIdList($placeId, $entityId);
     $this->componentPositionDao->deleteByIdList($positionIdList);
 }