Inheritance: StoreDataBound.Config
        /// <summary>
        ///
        /// </summary>
        public Store.Builder Store(Store.Config config)
        {
#if MVC
            return(new Store.Builder(new Store(config)
            {
                ViewContext = this.HtmlHelper != null ? this.HtmlHelper.ViewContext : null
            }));
#else
            return(new Store.Builder(new Store(config)));
#endif
        }
 /// <summary>
 ///
 /// </summary>
 public Builder(Store.Config config) : base(new Store(config))
 {
 }
 /// <summary>
 ///
 /// </summary>
 public Store.Builder Store(Store.Config config)
 {
     return(new Store.Builder(new Store(config)));
 }