TeamMentor.CoreLib.TM_Xml_Database_ExtensionMethods_GuiHelpers.getFolderStructure_Libraries C# (CSharp) Method

getFolderStructure_Libraries() public static method

public static getFolderStructure_Libraries ( this tmWebServices, TM_GUI_Objects guiObjects ) : List
tmWebServices this
guiObjects TM_GUI_Objects
return List
        public static List<Library_V3> getFolderStructure_Libraries(this TM_WebServices tmWebServices, TM_GUI_Objects guiObjects)
        {
            return (from library in tmWebServices.GetLibraries()
                    select tmWebServices.getFolderStructure_Library(library.Id,guiObjects)).toList();
        }