/**
  * Кэш учебных групп
  *
  * @static
  * @return CArrayList
  */
 private static function getCacheGroups()
 {
     if (is_null(self::$_cacheGroups)) {
         self::$_cacheGroups = new CArrayList();
     }
     return self::$_cacheGroups;
 }