Exemplo n.º 1
0
 /// <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);
     F.Dispose();
     return G;
 }