/// <summary> setups the sync logic for member _campaignTag</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncCampaignTag(IEntity2 relatedEntity)
 {
     if (_campaignTag != relatedEntity)
     {
         DesetupSyncCampaignTag(true, true);
         _campaignTag = (CampaignTagEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_campaignTag, new PropertyChangedEventHandler(OnCampaignTagPropertyChanged), "CampaignTag", CampaignTagMappingEntity.Relations.CampaignTagEntityUsingCampaignTagId, true, new string[] {  });
     }
 }
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _afcampaign  = null;
            _campaignTag = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
        protected CampaignTagMappingEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _afcampaign = (AfcampaignEntity)info.GetValue("_afcampaign", typeof(AfcampaignEntity));
                if (_afcampaign != null)
                {
                    _afcampaign.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _campaignTag = (CampaignTagEntity)info.GetValue("_campaignTag", typeof(CampaignTagEntity));
                if (_campaignTag != null)
                {
                    _campaignTag.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 _campaignTag</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 DesetupSyncCampaignTag(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_campaignTag, new PropertyChangedEventHandler(OnCampaignTagPropertyChanged), "CampaignTag", CampaignTagMappingEntity.Relations.CampaignTagEntityUsingCampaignTagId, true, signalRelatedEntity, "CampaignTagMapping", resetFKFields, new int[] { (int)CampaignTagMappingFieldIndex.CampaignTagId });
     _campaignTag = null;
 }
Beispiel #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(CampaignTagEntity.GetRelationsForField(fieldName));
 }