using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web.Mvc; namespace Bowin.Web.Controls.Mvc { public static class DroppableContainerExtensions { public static MvcHtmlString DroppableContainer(this HtmlHelper htmlHelper, DroppableContainerOptions droppableContainerOptions, System.Collections.Generic.IDictionary htmlAttributes = null) { return MvcHtmlString.Create(Bowin.Web.Controls.Mvc.DroppableContainer.CreateControl(droppableContainerOptions, htmlAttributes).Render()); } } }