public static CurrencyBox BootstrapCurrencyBoxFor <TModel, TProperty>(this HtmlHelper <TModel> htmlHelper, Expression <Func <TModel, TProperty> > expression) { var control = new CurrencyBox(); control.Initialize(htmlHelper, expression); return(control); }
public static CurrencyBox BootstrapCurrencyBox(this HtmlHelper htmlHelper, string name) { var control = new CurrencyBox(name); control.Initialize(htmlHelper); return(control); }