Exemple #1
0
 /// <summary> setups the sync logic for member _callRoundCallQueue</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncCallRoundCallQueue(IEntity2 relatedEntity)
 {
     if (_callRoundCallQueue != relatedEntity)
     {
         DesetupSyncCallRoundCallQueue(true, true);
         _callRoundCallQueue = (CallRoundCallQueueEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_callRoundCallQueue, new PropertyChangedEventHandler(OnCallRoundCallQueuePropertyChanged), "CallRoundCallQueue", CallRoundCallQueueCriteriaAssignmentEntity.Relations.CallRoundCallQueueEntityUsingCallRoundCallQueueId, true, new string[] {  });
     }
 }
Exemple #2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _callRoundCallQueue          = null;
            _healthPlanCallQueueCriteria = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
Exemple #3
0
        protected CallRoundCallQueueCriteriaAssignmentEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _callRoundCallQueue = (CallRoundCallQueueEntity)info.GetValue("_callRoundCallQueue", typeof(CallRoundCallQueueEntity));
                if (_callRoundCallQueue != null)
                {
                    _callRoundCallQueue.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _healthPlanCallQueueCriteria = (HealthPlanCallQueueCriteriaEntity)info.GetValue("_healthPlanCallQueueCriteria", typeof(HealthPlanCallQueueCriteriaEntity));
                if (_healthPlanCallQueueCriteria != null)
                {
                    _healthPlanCallQueueCriteria.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 _callRoundCallQueue</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 DesetupSyncCallRoundCallQueue(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_callRoundCallQueue, new PropertyChangedEventHandler(OnCallRoundCallQueuePropertyChanged), "CallRoundCallQueue", CallRoundCallQueueCriteriaAssignmentEntity.Relations.CallRoundCallQueueEntityUsingCallRoundCallQueueId, true, signalRelatedEntity, "CallRoundCallQueueCriteriaAssignment", resetFKFields, new int[] { (int)CallRoundCallQueueCriteriaAssignmentFieldIndex.CallRoundCallQueueId });
     _callRoundCallQueue = null;
 }