/**
  * Кэш мест практики
  *
  * @return CArrayList|null
  */
 private static function getCachePracticePlaces()
 {
     if (is_null(self::$_cachePracticePlaces)) {
         self::$_cachePracticePlaces = new CArrayList();
     }
     return self::$_cachePracticePlaces;
 }