Esempio n. 1
0
 /// <summary> setups the sync logic for member _mvuserEventTestLock</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncMvuserEventTestLock(IEntity2 relatedEntity)
 {
     if (_mvuserEventTestLock != relatedEntity)
     {
         DesetupSyncMvuserEventTestLock(true, true);
         _mvuserEventTestLock = (MvuserEventTestLockEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_mvuserEventTestLock, new PropertyChangedEventHandler(OnMvuserEventTestLockPropertyChanged), "MvuserEventTestLock", MvpaymentInfoEntity.Relations.MvuserEventTestLockEntityUsingMvuserEventTestLockId, true, new string[] {  });
     }
 }
Esempio n. 2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _medicalVendorPaymentAccrued = null;
            _mvuserEventTestLock         = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
Esempio n. 3
0
        protected MvpaymentInfoEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _medicalVendorPaymentAccrued = (MedicalVendorPaymentAccruedEntity)info.GetValue("_medicalVendorPaymentAccrued", typeof(MedicalVendorPaymentAccruedEntity));
                if (_medicalVendorPaymentAccrued != null)
                {
                    _medicalVendorPaymentAccrued.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _mvuserEventTestLock = (MvuserEventTestLockEntity)info.GetValue("_mvuserEventTestLock", typeof(MvuserEventTestLockEntity));
                if (_mvuserEventTestLock != null)
                {
                    _mvuserEventTestLock.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
Esempio n. 4
0
 /// <summary> Removes the sync logic for member _mvuserEventTestLock</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 DesetupSyncMvuserEventTestLock(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_mvuserEventTestLock, new PropertyChangedEventHandler(OnMvuserEventTestLockPropertyChanged), "MvuserEventTestLock", MvpaymentInfoEntity.Relations.MvuserEventTestLockEntityUsingMvuserEventTestLockId, true, signalRelatedEntity, "MvpaymentInfo", resetFKFields, new int[] { (int)MvpaymentInfoFieldIndex.MvuserEventTestLockId });
     _mvuserEventTestLock = null;
 }