MonoSoftware.MonoX.DAL.EntityClasses.SnNoteEntity.SetupSyncSnGroup C# (CSharp) 메소드

SetupSyncSnGroup() 개인적인 메소드

setups the sync logic for member _snGroup
private SetupSyncSnGroup ( IEntityCore relatedEntity ) : void
relatedEntity IEntityCore Instance to set as the related entity of type entityType
리턴 void
        private void SetupSyncSnGroup(IEntityCore relatedEntity)
        {
            if(_snGroup!=relatedEntity)
            {
                DesetupSyncSnGroup(true, true);
                _snGroup = (SnGroupEntity)relatedEntity;
                this.PerformSetupSyncRelatedEntity( _snGroup, new PropertyChangedEventHandler( OnSnGroupPropertyChanged ), "SnGroup", MonoSoftware.MonoX.DAL.RelationClasses.StaticSnNoteRelations.SnGroupEntityUsingGroupIdStatic, true, new string[] {  } );
            }
        }