示例#1
0
        internal ArticleGroupThread(CMSThread cmsThread, CMSSection cmsSection)
        {
            this._CMSThread = cmsThread;

            if (cmsSection != null)
            {
                this.ArticleGroup = new ArticleGroup(cmsSection);
            }
        }
示例#2
0
        public ArticleGroupThread(ArticleGroup articleGroup, ArticleGroupThreadStatus status, string name)
        {
            this._CMSThread = new CMSThread(articleGroup.CMSSection, false, (byte)status);

            this.Name = name;
        }