Ejemplo n.º 1
0
 public WebsitePageZone(BaseWebsitePageZone baseZone, String contents)
 {
     Name     = baseZone.Name;
     Contents = contents;
     Audience = baseZone.Audience;
     ZoneType = baseZone.ZoneType;
     CodePath = baseZone.CodePath;
 }
Ejemplo n.º 2
0
 public WebsitePageZone(BaseWebsitePageZone baseZone)
 {
     Name     = baseZone.Name;
     Contents = "";
     Audience = baseZone.Audience;
     ZoneType = baseZone.ZoneType;
     CodePath = baseZone.CodePath;
 }