using System; using System.Reflection; namespace Common.Infrastructure.Mvc { public interface IControllerActionVerifier { bool Exists(Assembly controllerAssembly, string controller, string action); } }