Go to the documentation of this file.00001 using System;
00002
00003 namespace N2.Web.Mvc
00004 {
00005 public interface IControllerMapper
00006 {
00007 string GetControllerName(Type type);
00008 bool ControllerHasAction(string controllerName, string actionName);
00009 }
00010 }