MonoSoftware.MonoX.DAL.EntityClasses.OaConsumerEntity.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._oaTokens = (EntityCollection<OaTokenEntity>) collectionsQueue.Dequeue();
            this._snEvents = (EntityCollection<SnEventEntity>) collectionsQueue.Dequeue();
        }