public static MvcHtmlString Module(this HtmlHelper htmlHelper, ModuleInfo info, object htmlAttributes)
 {
     var attributes = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);
     return Module(htmlHelper, info.ModuleName, info.Controller, info.StartView, attributes);
 }
 public static MvcHtmlString Module(this HtmlHelper htmlHelper, ModuleInfo info)
 {
     return Module(htmlHelper, info.ModuleName, info.Controller, info.StartView, null);
 }