MonoSoftware.MonoX.DAL.EntityClasses.PollEntity.GetFromMemberEntityCollectionsQueue C# (CSharp) 메소드

GetFromMemberEntityCollectionsQueue() 보호된 메소드

Gets the member collections queue from the queue (base first)
protected GetFromMemberEntityCollectionsQueue ( Queue collectionsQueue ) : void
collectionsQueue Queue The collections queue.
리턴 void
        protected override void GetFromMemberEntityCollectionsQueue(Queue<IEntityCollection2> collectionsQueue)
        {
            base.GetFromMemberEntityCollectionsQueue(collectionsQueue);
            this._pollAnswers = (EntityCollection<PollAnswerEntity>) collectionsQueue.Dequeue();
            this._pollLocalizations = (EntityCollection<PollLocalizationEntity>) collectionsQueue.Dequeue();
            this._snRelationshipss = (EntityCollection<SnRelationshipEntity>) collectionsQueue.Dequeue();
        }