예제 #1
0
        protected CustomerIcdCodeEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _customerProfile = (CustomerProfileEntity)info.GetValue("_customerProfile", typeof(CustomerProfileEntity));
                if (_customerProfile != null)
                {
                    _customerProfile.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _icdCodes = (IcdCodesEntity)info.GetValue("_icdCodes", typeof(IcdCodesEntity));
                if (_icdCodes != null)
                {
                    _icdCodes.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _organizationRoleUser = (OrganizationRoleUserEntity)info.GetValue("_organizationRoleUser", typeof(OrganizationRoleUserEntity));
                if (_organizationRoleUser != null)
                {
                    _organizationRoleUser.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
예제 #2
0
 /// <summary> setups the sync logic for member _icdCodes</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncIcdCodes(IEntity2 relatedEntity)
 {
     if (_icdCodes != relatedEntity)
     {
         DesetupSyncIcdCodes(true, true);
         _icdCodes = (IcdCodesEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_icdCodes, new PropertyChangedEventHandler(OnIcdCodesPropertyChanged), "IcdCodes", CustomerIcdCodeEntity.Relations.IcdCodesEntityUsingIcdCodeId, true, new string[] {  });
     }
 }
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _eventCustomers = null;
            _icdCodes       = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
예제 #4
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _customerProfile      = null;
            _icdCodes             = null;
            _organizationRoleUser = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
        protected EventCustomerIcdCodesEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _eventCustomers = (EventCustomersEntity)info.GetValue("_eventCustomers", typeof(EventCustomersEntity));
                if (_eventCustomers != null)
                {
                    _eventCustomers.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _icdCodes = (IcdCodesEntity)info.GetValue("_icdCodes", typeof(IcdCodesEntity));
                if (_icdCodes != null)
                {
                    _icdCodes.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
예제 #6
0
 /// <summary> Removes the sync logic for member _icdCodes</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 DesetupSyncIcdCodes(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_icdCodes, new PropertyChangedEventHandler(OnIcdCodesPropertyChanged), "IcdCodes", CustomerIcdCodeEntity.Relations.IcdCodesEntityUsingIcdCodeId, true, signalRelatedEntity, "CustomerIcdCode", resetFKFields, new int[] { (int)CustomerIcdCodeFieldIndex.IcdCodeId });
     _icdCodes = null;
 }