Пример #1
0
 /// <summary> setups the sync logic for member _podRoom</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncPodRoom(IEntity2 relatedEntity)
 {
     if (_podRoom != relatedEntity)
     {
         DesetupSyncPodRoom(true, true);
         _podRoom = (PodRoomEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_podRoom, new PropertyChangedEventHandler(OnPodRoomPropertyChanged), "PodRoom", PodRoomTestEntity.Relations.PodRoomEntityUsingPodRoomId, true, new string[] {  });
     }
 }
Пример #2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _podRoom = null;
            _test    = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
Пример #3
0
        protected PodRoomTestEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _podRoom = (PodRoomEntity)info.GetValue("_podRoom", typeof(PodRoomEntity));
                if (_podRoom != null)
                {
                    _podRoom.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _test = (TestEntity)info.GetValue("_test", typeof(TestEntity));
                if (_test != null)
                {
                    _test.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
Пример #4
0
 /// <summary> Removes the sync logic for member _podRoom</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 DesetupSyncPodRoom(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_podRoom, new PropertyChangedEventHandler(OnPodRoomPropertyChanged), "PodRoom", PodRoomTestEntity.Relations.PodRoomEntityUsingPodRoomId, true, signalRelatedEntity, "PodRoomTest", resetFKFields, new int[] { (int)PodRoomTestFieldIndex.PodRoomId });
     _podRoom = null;
 }