MonoSoftware.MonoX.DAL.EntityClasses.AspnetPersonalizationAllUsersEntity.SetupSyncAspnetPaths C# (CSharp) Method

SetupSyncAspnetPaths() private method

setups the sync logic for member _aspnetPaths
private SetupSyncAspnetPaths ( IEntityCore relatedEntity ) : void
relatedEntity IEntityCore Instance to set as the related entity of type entityType
return void
        private void SetupSyncAspnetPaths(IEntityCore relatedEntity)
        {
            if(_aspnetPaths!=relatedEntity)
            {
                DesetupSyncAspnetPaths(true, true);
                _aspnetPaths = (AspnetPathsEntity)relatedEntity;
                this.PerformSetupSyncRelatedEntity( _aspnetPaths, new PropertyChangedEventHandler( OnAspnetPathsPropertyChanged ), "AspnetPaths", MonoSoftware.MonoX.DAL.RelationClasses.StaticAspnetPersonalizationAllUsersRelations.AspnetPathsEntityUsingPathIdStatic, true, new string[] {  } );
            }
        }