MonoSoftware.MonoX.DAL.EntityClasses.PrivacyLevelEntity.CreateMemberEntityCollectionsQueue C# (CSharp) Méthode

CreateMemberEntityCollectionsQueue() protected méthode

Creates the member entity collections queue.
protected CreateMemberEntityCollectionsQueue ( Queue collectionsQueue, Queue requiredQueue ) : void
collectionsQueue Queue The collections queue.
requiredQueue Queue The required queue.
Résultat void
        protected override void CreateMemberEntityCollectionsQueue(Queue<IEntityCollection2> collectionsQueue, Queue<bool> requiredQueue)
        {
            base.CreateMemberEntityCollectionsQueue(collectionsQueue, requiredQueue);
            collectionsQueue.Enqueue(requiredQueue.Dequeue() ? new EntityCollection<PrivacyLevelDefinitionEntity>(EntityFactoryCache2.GetEntityFactory(typeof(PrivacyLevelDefinitionEntityFactory))) : null);
            collectionsQueue.Enqueue(requiredQueue.Dequeue() ? new EntityCollection<SnAlbumEntity>(EntityFactoryCache2.GetEntityFactory(typeof(SnAlbumEntityFactory))) : null);
            collectionsQueue.Enqueue(requiredQueue.Dequeue() ? new EntityCollection<SnFileEntity>(EntityFactoryCache2.GetEntityFactory(typeof(SnFileEntityFactory))) : null);
            collectionsQueue.Enqueue(requiredQueue.Dequeue() ? new EntityCollection<SnNoteEntity>(EntityFactoryCache2.GetEntityFactory(typeof(SnNoteEntityFactory))) : null);
            collectionsQueue.Enqueue(requiredQueue.Dequeue() ? new EntityCollection<UserProfileEntity>(EntityFactoryCache2.GetEntityFactory(typeof(UserProfileEntityFactory))) : null);
        }