public void RedisCacheProducts()
        {
            var productManager = new ProductsManager(new ProductsRedisCache("localhost"));

            for (var i = 0; i < 10; i++)
            {
                Console.WriteLine(productManager.GetProducts().Count());
                Thread.Sleep(100);
            }
        }
        public void MemoryCacheProducts()
        {
            var productManager = new ProductsManager(new ProductsMemoryCache());

            for (var i = 0; i < 10; i++)
            {
                Console.WriteLine(productManager.GetProducts().Count());
                Thread.Sleep(100);
            }
        }