MonoSoftware.MonoX.DAL.EntityClasses.SnGroupEntity.GetMemberEntityCollections C# (CSharp) Method

GetMemberEntityCollections() protected method

Gets a list of all entity collections stored as member variables in this entity. Only 1:n related collections are returned.
protected GetMemberEntityCollections ( ) : List
return List
        protected override List<IEntityCollection2> GetMemberEntityCollections()
        {
            List<IEntityCollection2> toReturn = new List<IEntityCollection2>();
            toReturn.Add(this.SnAlbum);
            toReturn.Add(this.SnDiscussionBoard);
            toReturn.Add(this.SnEvents);
            toReturn.Add(this.SnGroupMembers);
            toReturn.Add(this.SnGroupRequests);
            toReturn.Add(this.SnNotes);
            toReturn.Add(this.SnRelationshipss);
            return toReturn;
        }