/// <summary>
        /// Load the possible Searches:<para/>
        /// - EA Standard Searches<para/>
        /// - Searches defined in MDG (Program-Technology-Folder, MDG in file locations, MDG in URI locations)<para/> 
        /// - Local Search of PC <para/> 
        /// </summary>
        static void LoadAllSearches(EA.Repository rep)
        {
            _staticAllSearches = new List<SearchItem>();


            // Load EA Standard Search Names for current release  
            LoadEaStandardSearchesFromJason(rep.getRelease());

            LoadSqlSearches();

            //local scripts
            LoadLocalSearches(rep);
            //MDG scripts in the program folder
            LoadLocalMdgSearches(rep);
            // MDG scripts in other locations
            LoadOtherMdgSearches(rep);
            // order
            _staticAllSearches = _staticAllSearches.OrderBy(a => a.Name)
                .ToList();
            LoadStaticSearchesSuggestions();

        }