public static function getRoomsTypeShortly($number)
 {
     $data = RealEstateAgency_Object_RealEstateObjectSupport::listOfRoomsTypesShortly();
     foreach ($data as $index => $hash) {
         $id = $hash['id'];
         $name = $hash['name'];
         if ($id == $number) {
             return $name;
         }
     }
     return '';
 }