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