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

SetupSyncSnAlbum() private method

setups the sync logic for member _snAlbum
private SetupSyncSnAlbum ( IEntityCore relatedEntity ) : void
relatedEntity IEntityCore Instance to set as the related entity of type entityType
return void
        private void SetupSyncSnAlbum(IEntityCore relatedEntity)
        {
            if(_snAlbum!=relatedEntity)
            {
                DesetupSyncSnAlbum(true, true);
                _snAlbum = (SnAlbumEntity)relatedEntity;
                this.PerformSetupSyncRelatedEntity( _snAlbum, new PropertyChangedEventHandler( OnSnAlbumPropertyChanged ), "SnAlbum", MonoSoftware.MonoX.DAL.RelationClasses.StaticSnRelationshipRelations.SnAlbumEntityUsingAlbumIdStatic, true, new string[] {  } );
            }
        }
SnRelationshipEntity