Beispiel #1
0
 /// <summary> setups the sync logic for member _prospectCustomer</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncProspectCustomer(IEntity2 relatedEntity)
 {
     if (_prospectCustomer != relatedEntity)
     {
         DesetupSyncProspectCustomer(true, true);
         _prospectCustomer = (ProspectCustomerEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_prospectCustomer, new PropertyChangedEventHandler(OnProspectCustomerPropertyChanged), "ProspectCustomer", ProspectCustomerCallEntity.Relations.ProspectCustomerEntityUsingProspectCustomerId, true, new string[] {  });
     }
 }
Beispiel #2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _calls            = null;
            _prospectCustomer = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
Beispiel #3
0
        protected ProspectCustomerCallEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _calls = (CallsEntity)info.GetValue("_calls", typeof(CallsEntity));
                if (_calls != null)
                {
                    _calls.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _prospectCustomer = (ProspectCustomerEntity)info.GetValue("_prospectCustomer", typeof(ProspectCustomerEntity));
                if (_prospectCustomer != null)
                {
                    _prospectCustomer.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
Beispiel #4
0
 /// <summary> Removes the sync logic for member _prospectCustomer</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 DesetupSyncProspectCustomer(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_prospectCustomer, new PropertyChangedEventHandler(OnProspectCustomerPropertyChanged), "ProspectCustomer", ProspectCustomerCallEntity.Relations.ProspectCustomerEntityUsingProspectCustomerId, true, signalRelatedEntity, "ProspectCustomerCall", resetFKFields, new int[] { (int)ProspectCustomerCallFieldIndex.ProspectCustomerId });
     _prospectCustomer = null;
 }