Beispiel #1
0
 /// <summary>
 /// Constructor for <see cref="CampaignLandingElement"/>.
 /// </summary>
 /// <param name="source">Instance of <see cref="CampaignLandingElement"/>.</param>
 /// <param name="dictToRebind">Dictionary to rebind schema elements' ids.</param>
 /// <param name="parentSchema">Parent campaign schema.</param>
 public CampaignLandingElement(CampaignLandingElement source, Dictionary <Guid, Guid> dictToRebind,
                               Core.Campaign.CampaignSchema parentSchema) : base(source, dictToRebind, parentSchema)
 {
     LandingId = source.LandingId;
 }
 /// <summary>
 /// Constructor for <see cref="CampaignAddLandingAudienceElement"/>.
 /// </summary>
 /// <param name="source">Instance of <see cref="CampaignLandingElement"/>.</param>
 /// <param name="dictToRebind">Dictionary to rebind schema elements' ids.</param>
 /// <param name="parentSchema">Parent campaign schema.</param>
 public CampaignAddLandingAudienceElement(CampaignLandingElement source, Dictionary <Guid, Guid> dictToRebind,
                                          CoreCampaignSchema parentSchema) : base(source, dictToRebind, parentSchema)
 {
     LandingId   = source.LandingId;
     ElementType = CampaignSchemaElementType.AddAudience;
 }
Beispiel #3
0
 /// <summary>
 /// Constructor for <see cref="CampaignLandingElement"/>.
 /// </summary>
 /// <param name="source">Instance of <see cref="CampaignLandingElement"/>.</param>
 public CampaignLandingElement(CampaignLandingElement source)
     : this(source, null, null)
 {
 }
 /// <summary>
 /// Constructor for <see cref="CampaignAddLandingAudienceElement"/>.
 /// </summary>
 /// <param name="source">Instance of <see cref="CampaignLandingElement"/>.</param>
 public CampaignAddLandingAudienceElement(CampaignLandingElement source)
     : this(source, null, null)
 {
 }