MonoSoftware.MonoX.DAL.EntityClasses.NewsCategoryEntity.GetFromMemberEntityCollectionsQueue C# (CSharp) Method

GetFromMemberEntityCollectionsQueue() protected method

Gets the member collections queue from the queue (base first)
protected GetFromMemberEntityCollectionsQueue ( Queue collectionsQueue ) : void
collectionsQueue Queue The collections queue.
return void
        protected override void GetFromMemberEntityCollectionsQueue(Queue<IEntityCollection2> collectionsQueue)
        {
            base.GetFromMemberEntityCollectionsQueue(collectionsQueue);
            this._newsCategoryChildrens = (EntityCollection<NewsCategoryEntity>) collectionsQueue.Dequeue();
            this._newsCategoryInRoles = (EntityCollection<NewsCategoryInRoleEntity>) collectionsQueue.Dequeue();
            this._newsCategoryLocalizations = (EntityCollection<NewsCategoryLocalizationEntity>) collectionsQueue.Dequeue();
            this._newsItems = (EntityCollection<NewsItemEntity>) collectionsQueue.Dequeue();
            this._snRelationshipss = (EntityCollection<SnRelationshipEntity>) collectionsQueue.Dequeue();
        }