Exemple #1
0
 /// <summary> setups the sync logic for member _afchannel</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncAfchannel(IEntity2 relatedEntity)
 {
     if (_afchannel != relatedEntity)
     {
         DesetupSyncAfchannel(true, true);
         _afchannel = (AfchannelEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_afchannel, new PropertyChangedEventHandler(OnAfchannelPropertyChanged), "Afchannel", AfadvertiserEntity.Relations.AfchannelEntityUsingChannelId, true, new string[] {  });
     }
 }
Exemple #2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _afcampaign = null;
            _organizationRoleUserCollectionViaAfcampaign_ = null;
            _organizationRoleUserCollectionViaAfcampaign  = null;
            _afchannel = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
Exemple #3
0
        protected AfadvertiserEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _afcampaign = (EntityCollection <AfcampaignEntity>)info.GetValue("_afcampaign", typeof(EntityCollection <AfcampaignEntity>));
                _organizationRoleUserCollectionViaAfcampaign_ = (EntityCollection <OrganizationRoleUserEntity>)info.GetValue("_organizationRoleUserCollectionViaAfcampaign_", typeof(EntityCollection <OrganizationRoleUserEntity>));
                _organizationRoleUserCollectionViaAfcampaign  = (EntityCollection <OrganizationRoleUserEntity>)info.GetValue("_organizationRoleUserCollectionViaAfcampaign", typeof(EntityCollection <OrganizationRoleUserEntity>));
                _afchannel = (AfchannelEntity)info.GetValue("_afchannel", typeof(AfchannelEntity));
                if (_afchannel != null)
                {
                    _afchannel.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
Exemple #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(AfchannelEntity.GetRelationsForField(fieldName));
 }
Exemple #5
0
 /// <summary> Removes the sync logic for member _afchannel</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 DesetupSyncAfchannel(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_afchannel, new PropertyChangedEventHandler(OnAfchannelPropertyChanged), "Afchannel", AfadvertiserEntity.Relations.AfchannelEntityUsingChannelId, true, signalRelatedEntity, "Afadvertiser", resetFKFields, new int[] { (int)AfadvertiserFieldIndex.ChannelId });
     _afchannel = null;
 }