/// <summary> setups the sync logic for member _iflocationMaster</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncIflocationMaster(IEntity2 relatedEntity)
 {
     if (_iflocationMaster != relatedEntity)
     {
         DesetupSyncIflocationMaster(true, true);
         _iflocationMaster = (IflocationMasterEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_iflocationMaster, new PropertyChangedEventHandler(OnIflocationMasterPropertyChanged), "IflocationMaster", AaaiflocationWiseDataEntity.Relations.IflocationMasterEntityUsingIflocationMasterId, true, new string[] {  });
     }
 }
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _aaatestIncidentalFindings = null;
            _iflocationMaster          = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
        protected AaaiflocationWiseDataEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _aaatestIncidentalFindings = (AaatestIncidentalFindingsEntity)info.GetValue("_aaatestIncidentalFindings", typeof(AaatestIncidentalFindingsEntity));
                if (_aaatestIncidentalFindings != null)
                {
                    _aaatestIncidentalFindings.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _iflocationMaster = (IflocationMasterEntity)info.GetValue("_iflocationMaster", typeof(IflocationMasterEntity));
                if (_iflocationMaster != null)
                {
                    _iflocationMaster.AfterSave += new EventHandler(OnEntityAfterSave);
                }

                base.FixupDeserialization(FieldInfoProviderSingleton.GetInstance());
            }

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
 /// <summary> Removes the sync logic for member _iflocationMaster</summary>
 /// <param name="signalRelatedEntity">If set to true, it will call the related entity's UnsetRelatedEntity method</param>
 /// <param name="resetFKFields">if set to true it will also reset the FK fields pointing to the related entity</param>
 private void DesetupSyncIflocationMaster(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_iflocationMaster, new PropertyChangedEventHandler(OnIflocationMasterPropertyChanged), "IflocationMaster", AaaiflocationWiseDataEntity.Relations.IflocationMasterEntityUsingIflocationMasterId, true, signalRelatedEntity, "AaaiflocationWiseData", resetFKFields, new int[] { (int)AaaiflocationWiseDataFieldIndex.IflocationMasterId });
     _iflocationMaster = null;
 }