public static MvcHtmlString EditorCommandControls <TModel>(this HtmlHelper <TModel> htmlHelper, string stateManagerName, EditorViewConfig config = null)
 {
     return(htmlHelper.ToKnockoutUIBuilder().EditorCommandControls(stateManagerName, config ?? EditorViewConfig.Default));
 }
 public static MvcHtmlString BoundEditorViewFor <TModel, TValue>(this HtmlHelper <TModel> htmlHelper, Expression <Func <TModel, TValue> > expression, string stateManagerName, EditorViewConfig config = null, bool scopeBindingToProperty = false)
 {
     return(htmlHelper.ToKnockoutUIBuilder().EditorViewFor(expression, stateManagerName, config ?? EditorViewConfig.Default, scopeBindingToProperty));
 }