예제 #1
0
파일: Oyster.cs 프로젝트: CarverLab/Oyster
        /// <summary>
        /// Retrieves either all Current Groups or only the Public Access Groups in the System based on the supplied boolean parameter
        /// </summary>
        /// <param name="PublicOnly"></param>
        /// <returns></returns>
        public Groups GetALLGroups(bool PublicOnly)
        {
            Functions F = new Functions();
            Groups G = F.GetGroups(PublicOnly);

            return G;
        }