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

SetupSyncSnFile() private method

setups the sync logic for member _snFile
private SetupSyncSnFile ( IEntityCore relatedEntity ) : void
relatedEntity IEntityCore Instance to set as the related entity of type entityType
return void
        private void SetupSyncSnFile(IEntityCore relatedEntity)
        {
            if(_snFile!=relatedEntity)
            {
                DesetupSyncSnFile(true, true);
                _snFile = (SnFileEntity)relatedEntity;
                this.PerformSetupSyncRelatedEntity( _snFile, new PropertyChangedEventHandler( OnSnFilePropertyChanged ), "SnFile", MonoSoftware.MonoX.DAL.RelationClasses.StaticSnRelationshipRelations.SnFileEntityUsingFileIdStatic, true, new string[] {  } );
            }
        }
SnRelationshipEntity