Exemple #1
0
        public void integration_groups_list_groups()
        {
            var groups = new List <Group>();

            for (int i = 1; i < 100; i++)
            {
                var qo = new GroupProfileQO {
                    IncludeParticipants = false, RecordsPerPage = 5, PageNumber = 65
                };
                var results = base.ApiClient.Groups.GroupProfiles.List(qo);
                groups.AddRange(results.Groups);
                results.Groups.Count.ShouldBeGreaterThan(0);
            }
        }
Exemple #2
0
 public GroupCollection List(GroupProfileQO qo)
 {
     return(this.Execute("group_profiles", qo));
 }
Exemple #3
0
 public IChurchCommunityBuilderResponse <GroupCollection> List(GroupProfileQO qo)
 {
     return(this.Execute("group_profiles", qo));
 }