/// <summary> setups the sync logic for member _barrier</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncBarrier(IEntity2 relatedEntity)
 {
     if (_barrier != relatedEntity)
     {
         DesetupSyncBarrier(true, true);
         _barrier = (BarrierEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_barrier, new PropertyChangedEventHandler(OnBarrierPropertyChanged), "Barrier", EventCustomerBarrierEntity.Relations.BarrierEntityUsingBarrierId, true, new string[] {  });
     }
 }
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _barrier        = null;
            _eventCustomers = null;
            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
        protected EventCustomerBarrierEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _barrier = (BarrierEntity)info.GetValue("_barrier", typeof(BarrierEntity));
                if (_barrier != null)
                {
                    _barrier.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _eventCustomers = (EventCustomersEntity)info.GetValue("_eventCustomers", typeof(EventCustomersEntity));
                if (_eventCustomers != null)
                {
                    _eventCustomers.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                base.FixupDeserialization(FieldInfoProviderSingleton.GetInstance());
            }

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
예제 #4
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(BarrierEntity.GetRelationsForField(fieldName));
 }
 /// <summary> Removes the sync logic for member _barrier</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 DesetupSyncBarrier(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_barrier, new PropertyChangedEventHandler(OnBarrierPropertyChanged), "Barrier", EventCustomerBarrierEntity.Relations.BarrierEntityUsingBarrierId, true, signalRelatedEntity, "EventCustomerBarrier", resetFKFields, new int[] { (int)EventCustomerBarrierFieldIndex.BarrierId });
     _barrier = null;
 }