Ejemplo n.º 1
0
 /// <summary>
 /// Gets the full (relative) url of a page
 /// </summary>
 public string Page(IPageRoute route)
 {
     if (route == null)
     {
         return(string.Empty);
     }
     return(route.FullUrlPath);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets the full url of a page
 /// </summary>
 public string Page(IPageRoute route)
 {
     return(_pageRouteLibrary.Page(route));
 }