A little cleanup and hookup of navigation management

--HG--
branch : dev
This commit is contained in:
Erik Porter
2010-02-12 13:07:30 -08:00
parent 1b5e3bf6e7
commit dcb4eb478c

View File

@@ -0,0 +1,7 @@
using System.Collections.Generic;
namespace Orchard.UI.Navigation {
public interface INavigationManager : IDependency {
IEnumerable<MenuItem> BuildMenu(string menuName);
}
}