MonoSoftware.MonoX.DAL.EntityClasses.SnRelationshipEntity.SetupSyncSnGroup C# (CSharp) Method

SetupSyncSnGroup() private method

setups the sync logic for member _snGroup
private SetupSyncSnGroup ( IEntityCore relatedEntity ) : void
relatedEntity IEntityCore Instance to set as the related entity of type entityType
return 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.StaticSnRelationshipRelations.SnGroupEntityUsingGroupIdStatic, true, new string[] {  } );
            }
        }
SnRelationshipEntity