示例#1
0
        protected EventPodTeamEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _eventRole = (EventRoleEntity)info.GetValue("_eventRole", typeof(EventRoleEntity));
                if (_eventRole != null)
                {
                    _eventRole.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _organizationRoleUser = (OrganizationRoleUserEntity)info.GetValue("_organizationRoleUser", typeof(OrganizationRoleUserEntity));
                if (_organizationRoleUser != null)
                {
                    _organizationRoleUser.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _podDetails = (PodDetailsEntity)info.GetValue("_podDetails", typeof(PodDetailsEntity));
                if (_podDetails != null)
                {
                    _podDetails.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
示例#2
0
 /// <summary> setups the sync logic for member _eventRole</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncEventRole(IEntity2 relatedEntity)
 {
     if (_eventRole != relatedEntity)
     {
         DesetupSyncEventRole(true, true);
         _eventRole = (EventRoleEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_eventRole, new PropertyChangedEventHandler(OnEventRolePropertyChanged), "EventRole", EventPodTeamEntity.Relations.EventRoleEntityUsingEventRoleId, true, new string[] {  });
     }
 }
示例#3
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _eventRole            = null;
            _organizationRoleUser = null;
            _podDetails           = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
示例#4
0
 /// <summary> Removes the sync logic for member _eventRole</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 DesetupSyncEventRole(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_eventRole, new PropertyChangedEventHandler(OnEventRolePropertyChanged), "EventRole", EventPodTeamEntity.Relations.EventRoleEntityUsingEventRoleId, true, signalRelatedEntity, "EventPodTeam", resetFKFields, new int[] { (int)EventPodTeamFieldIndex.EventRoleId });
     _eventRole = null;
 }
示例#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(EventRoleEntity.GetRelationsForField(fieldName));
 }