public void Create(ISitemapConfigurator sitemap)
 {
     sitemap.Add(Other, "Index")
         .Add<OtherController>(c => c.Test(1, "dude"));
 }
 public void Create(ISitemapConfigurator sitemap)
 {
     sitemap.Add(Home, "Index")
         .Add(Home, "Scanner")
         .Add<HomeController>(c => c.Metadata());
 }