public static CssJsViewAppnder GetInstance(HtmlHelper htmlHelper)
        {
            if (_instance == null)
                _instance = new CssJsViewAppnder();

            _instance.SetHtmlHelper(htmlHelper);

            return _instance;
        }
예제 #2
0
        public static CssJsViewAppnder GetInstance(HtmlHelper htmlHelper)
        {
            if (_instance == null)
            {
                _instance = new CssJsViewAppnder();
            }

            _instance.SetHtmlHelper(htmlHelper);

            return(_instance);
        }
예제 #3
0
 public static CssJsViewAppnder cssJsViewAppnder(this HtmlHelper htmlHelper)
 {
     return(CssJsViewAppnder.GetInstance(htmlHelper));
 }