public static string MenuItems(this HtmlHelper helper, string linkText, string actionName, string controllerName, string area)
 {
     var item = new MenuItemContainer {Text = ""};
     return String.Empty;
 }
 public static string MenuItem(this HtmlHelper helper, MenuItemContainer item)
 {
     return MenuItem(helper, item.Text, item.Action, item.Controller, item.Area);
 }