Exemplo n.º 1
0
 public Site(string fullName)
 {
     this.Name         = FullNameHelper.GetName(fullName);
     this.AbsoluteName = fullName;
 }
Exemplo n.º 2
0
 public Page(Site site, string fullName)
 {
     this.Site         = site;
     this.AbsoluteName = fullName;
     this.Name         = FullNameHelper.GetName(fullName);
 }