Exemple #1
0
 /// <summary> setups the sync logic for member _shippingOption</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncShippingOption(IEntity2 relatedEntity)
 {
     if (_shippingOption != relatedEntity)
     {
         DesetupSyncShippingOption(true, true);
         _shippingOption = (ShippingOptionEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_shippingOption, new PropertyChangedEventHandler(OnShippingOptionPropertyChanged), "ShippingOption", ShippingOptionOrderItemEntity.Relations.ShippingOptionEntityUsingShippingOptionId, true, new string[] {  });
     }
 }
Exemple #2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _orderItem      = null;
            _shippingOption = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
Exemple #3
0
        protected ShippingOptionOrderItemEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _orderItem = (OrderItemEntity)info.GetValue("_orderItem", typeof(OrderItemEntity));
                if (_orderItem != null)
                {
                    _orderItem.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _shippingOption = (ShippingOptionEntity)info.GetValue("_shippingOption", typeof(ShippingOptionEntity));
                if (_shippingOption != null)
                {
                    _shippingOption.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
Exemple #4
0
 /// <summary> Removes the sync logic for member _shippingOption</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 DesetupSyncShippingOption(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_shippingOption, new PropertyChangedEventHandler(OnShippingOptionPropertyChanged), "ShippingOption", ShippingOptionOrderItemEntity.Relations.ShippingOptionEntityUsingShippingOptionId, true, signalRelatedEntity, "ShippingOptionOrderItem", resetFKFields, new int[] { (int)ShippingOptionOrderItemFieldIndex.ShippingOptionId });
     _shippingOption = null;
 }