Example #1
0
 public ReportWebsitePageZone(ReportWebsitePageZone other)
 {
     Name              = other.Name;
     CodePath          = other.CodePath;
     ReportWebsitePage = other.ReportWebsitePage;
 }
Example #2
0
 public ReportWebsitePageZone(ReportWebsitePage reportWebsitePage, ReportWebsitePageZone other) : this(other)
 {
     reportWebsitePage.AddWebsitePageZone(this);
 }
Example #3
0
 public void AddWebsitePageZone(ReportWebsitePageZone rwpz)
 {
     WebsitePageZones.Add(rwpz);
     rwpz.ReportWebsitePage = this;
 }