/// <summary> setups the sync logic for member _customEventNotification</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncCustomEventNotification(IEntity2 relatedEntity)
 {
     if (_customEventNotification != relatedEntity)
     {
         DesetupSyncCustomEventNotification(true, true);
         _customEventNotification = (CustomEventNotificationEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_customEventNotification, new PropertyChangedEventHandler(OnCustomEventNotificationPropertyChanged), "CustomEventNotification", EventCustomerCustomNotificationEntity.Relations.CustomEventNotificationEntityUsingCustomEventNotificationId, true, new string[] {  });
     }
 }
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _customEventNotification = null;
            _eventCustomers          = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
        protected EventCustomerCustomNotificationEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _customEventNotification = (CustomEventNotificationEntity)info.GetValue("_customEventNotification", typeof(CustomEventNotificationEntity));
                if (_customEventNotification != null)
                {
                    _customEventNotification.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _eventCustomers = (EventCustomersEntity)info.GetValue("_eventCustomers", typeof(EventCustomersEntity));
                if (_eventCustomers != null)
                {
                    _eventCustomers.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 _customEventNotification</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 DesetupSyncCustomEventNotification(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_customEventNotification, new PropertyChangedEventHandler(OnCustomEventNotificationPropertyChanged), "CustomEventNotification", EventCustomerCustomNotificationEntity.Relations.CustomEventNotificationEntityUsingCustomEventNotificationId, true, signalRelatedEntity, "EventCustomerCustomNotification", resetFKFields, new int[] { (int)EventCustomerCustomNotificationFieldIndex.CustomEventNotificationId });
     _customEventNotification = null;
 }