コード例 #1
0
 /// <summary> setups the sync logic for member _mvinvoice</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncMvinvoice(IEntity2 relatedEntity)
 {
     if (_mvinvoice != relatedEntity)
     {
         DesetupSyncMvinvoice(true, true);
         _mvinvoice = (MVInvoiceEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_mvinvoice, new PropertyChangedEventHandler(OnMvinvoicePropertyChanged), "Mvinvoice", MVPaymentInvoiceEntity.Relations.MVInvoiceEntityUsingMvinvoiceId, true, new string[] {  });
     }
 }
コード例 #2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _mvinvoice = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
コード例 #3
0
        protected MVInvoiceItemEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _mvinvoice = (MVInvoiceEntity)info.GetValue("_mvinvoice", typeof(MVInvoiceEntity));
                if (_mvinvoice != null)
                {
                    _mvinvoice.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
コード例 #4
0
 /// <summary> Removes the sync logic for member _mvinvoice</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 DesetupSyncMvinvoice(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_mvinvoice, new PropertyChangedEventHandler(OnMvinvoicePropertyChanged), "Mvinvoice", MVPaymentInvoiceEntity.Relations.MVInvoiceEntityUsingMvinvoiceId, true, signalRelatedEntity, "MvpaymentInvoice", resetFKFields, new int[] { (int)MVPaymentInvoiceFieldIndex.MvinvoiceId });
     _mvinvoice = null;
 }