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

DesetupSyncNewsCategoryTemplate() private method

Removes the sync logic for member _newsCategoryTemplate
private DesetupSyncNewsCategoryTemplate ( bool signalRelatedEntity, bool resetFKFields ) : void
signalRelatedEntity bool If set to true, it will call the related entity's UnsetRelatedEntity method
resetFKFields bool if set to true it will also reset the FK fields pointing to the related entity
return void
        private void DesetupSyncNewsCategoryTemplate(bool signalRelatedEntity, bool resetFKFields)
        {
            this.PerformDesetupSyncRelatedEntity( _newsCategoryTemplate, new PropertyChangedEventHandler( OnNewsCategoryTemplatePropertyChanged ), "NewsCategoryTemplate", MonoSoftware.MonoX.DAL.RelationClasses.StaticNewsCategoryRelations.NewsCategoryTemplateEntityUsingIdStatic, false, signalRelatedEntity, "NewsCategory", false, new int[] { (int)NewsCategoryFieldIndex.Id } );
            _newsCategoryTemplate = null;
        }