Exemplo n.º 1
0
        public ActionResult Type(string name)
        {
            if (string.IsNullOrEmpty(name))
            {
                return(new HttpNotFoundResult());
            }

            return(View(GodOfDocumentation.Get().Members.First(m => m.Type == "T" && m.Name == name)));
        }
Exemplo n.º 2
0
 public ActionResult Index()
 {
     return(View(GodOfDocumentation.Get()));
 }