/// <summary> setups the sync logic for member _callCenterTeam</summary> /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param> private void SetupSyncCallCenterTeam(IEntity2 relatedEntity) { if (_callCenterTeam != relatedEntity) { DesetupSyncCallCenterTeam(true, true); _callCenterTeam = (CallCenterTeamEntity)relatedEntity; base.PerformSetupSyncRelatedEntity(_callCenterTeam, new PropertyChangedEventHandler(OnCallCenterTeamPropertyChanged), "CallCenterTeam", CallCenterAgentTeamEntity.Relations.CallCenterTeamEntityUsingTeamId, true, new string[] { }); } }
/// <summary> Initializes the class members</summary> protected virtual void InitClassMembers() { _callCenterTeam = null; _organizationRoleUser = null; PerformDependencyInjection(); // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers // __LLBLGENPRO_USER_CODE_REGION_END OnInitClassMembersComplete(); }
protected CallCenterAgentTeamEntity(SerializationInfo info, StreamingContext context) : base(info, context) { if (SerializationHelper.Optimization != SerializationOptimization.Fast) { _callCenterTeam = (CallCenterTeamEntity)info.GetValue("_callCenterTeam", typeof(CallCenterTeamEntity)); if (_callCenterTeam != null) { _callCenterTeam.AfterSave += new EventHandler(OnEntityAfterSave); } _organizationRoleUser = (OrganizationRoleUserEntity)info.GetValue("_organizationRoleUser", typeof(OrganizationRoleUserEntity)); if (_organizationRoleUser != null) { _organizationRoleUser.AfterSave += new EventHandler(OnEntityAfterSave); } base.FixupDeserialization(FieldInfoProviderSingleton.GetInstance()); } // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor // __LLBLGENPRO_USER_CODE_REGION_END }
/// <summary> Removes the sync logic for member _callCenterTeam</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 DesetupSyncCallCenterTeam(bool signalRelatedEntity, bool resetFKFields) { base.PerformDesetupSyncRelatedEntity(_callCenterTeam, new PropertyChangedEventHandler(OnCallCenterTeamPropertyChanged), "CallCenterTeam", CallCenterAgentTeamEntity.Relations.CallCenterTeamEntityUsingTeamId, true, signalRelatedEntity, "CallCenterAgentTeam", resetFKFields, new int[] { (int)CallCenterAgentTeamFieldIndex.TeamId }); _callCenterTeam = null; }