public async Task AnyShouldReturnTrue()
        {
            var product = new ProductDto
            {
                Name        = "Pollo",
                CategoryId  = 9,
                Description = "Pollo might be your choice when you are in the mood for something healthy. Tender grilled chicken, creamy feta, roasted red peppers and corn are generously piled on top of our famous tomato sauce.",
                Price       = 10.90m,
                Weight      = 550,
                Image       = "http://www.ilforno.bg/45-large_default/polo.jpg"
            };

            await _productsService.CreateAsync(product);

            Assert.True(_productsService.Any());
        }