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

SetupSyncAspnetApplications() private method

setups the sync logic for member _aspnetApplications
private SetupSyncAspnetApplications ( IEntityCore relatedEntity ) : void
relatedEntity IEntityCore Instance to set as the related entity of type entityType
return void
        private void SetupSyncAspnetApplications(IEntityCore relatedEntity)
        {
            if(_aspnetApplications!=relatedEntity)
            {
                DesetupSyncAspnetApplications(true, true);
                _aspnetApplications = (AspnetApplicationsEntity)relatedEntity;
                this.PerformSetupSyncRelatedEntity( _aspnetApplications, new PropertyChangedEventHandler( OnAspnetApplicationsPropertyChanged ), "AspnetApplications", MonoSoftware.MonoX.DAL.RelationClasses.StaticNewsCategoryRelations.AspnetApplicationsEntityUsingApplicationIdStatic, true, new string[] {  } );
            }
        }