Ejemplo n.º 1
0
 /// <summary> setups the sync logic for member _medicalVendorPaymentAccrued</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncMedicalVendorPaymentAccrued(IEntity2 relatedEntity)
 {
     if (_medicalVendorPaymentAccrued != relatedEntity)
     {
         DesetupSyncMedicalVendorPaymentAccrued(true, true);
         _medicalVendorPaymentAccrued = (MedicalVendorPaymentAccruedEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_medicalVendorPaymentAccrued, new PropertyChangedEventHandler(OnMedicalVendorPaymentAccruedPropertyChanged), "MedicalVendorPaymentAccrued", MvpaymentInfoEntity.Relations.MedicalVendorPaymentAccruedEntityUsingMedicalVendorPayAccrId, true, new string[] {  });
     }
 }
Ejemplo 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();
        }
Ejemplo 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
        }
Ejemplo n.º 4
0
 /// <summary> Removes the sync logic for member _medicalVendorPaymentAccrued</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 DesetupSyncMedicalVendorPaymentAccrued(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_medicalVendorPaymentAccrued, new PropertyChangedEventHandler(OnMedicalVendorPaymentAccruedPropertyChanged), "MedicalVendorPaymentAccrued", MvpaymentInfoEntity.Relations.MedicalVendorPaymentAccruedEntityUsingMedicalVendorPayAccrId, true, signalRelatedEntity, "MvpaymentInfo", resetFKFields, new int[] { (int)MvpaymentInfoFieldIndex.MedicalVendorPayAccrId });
     _medicalVendorPaymentAccrued = null;
 }
Ejemplo n.º 5
0
 /// <summary>Gets the relation objects which represent the relation the fieldName specified is mapped on. </summary>
 /// <param name="fieldName">Name of the field mapped onto the relation of which the relation objects have to be obtained.</param>
 /// <returns>RelationCollection with relation object(s) which represent the relation the field is maped on</returns>
 public override RelationCollection GetRelationsForFieldOfType(string fieldName)
 {
     return(MedicalVendorPaymentAccruedEntity.GetRelationsForField(fieldName));
 }