public static IWebStore Instance(ICoreSupplier coreSupplier)
        {
            if (WebStoreInstance == null)
            {
                WebStoreInstance = new WebStore(coreSupplier);
            }

            return(WebStoreInstance);
        }
        public static IWebStore Instance()
        {
            if (WebStoreInstance == null)
            {
                WebStoreInstance = new WebStore();
            }

            return(WebStoreInstance);
        }