public void Setup()
        {
            _fireTruck = new Product
                {
                    Id = "f1234",
                    Description = "Fire Truck",
                    Color = ProductColor.RED,
                    Price = 8.95,
                    Size = ProductSize.MEDIUM
                };

            _barbieClassic = new Product
            {
                Id = "b7654",
                Description = "Barbie Classic",
                Color = ProductColor.YELLOW,
                Price = 15.95,
                Size = ProductSize.SMALL
            };

            _frisbee = new Product
            {
                Id = "f4321",
                Description = "Frisbee",
                Color = ProductColor.GREEN,
                Price = 9.99,
                Size = ProductSize.LARGE
            };

            _baseball = new Product
            {
                Id = "b2343",
                Description = "Baseball",
                Color = ProductColor.WHITE,
                Price = 8.95,
                Size = ProductSize.NOT_APPLICABLE
            };

            _toyConvertible = new Product
            {
                Id = "p1112",
                Description = "Toy Porsche Convertible",
                Color = ProductColor.RED,
                Price = 230,
                Size = ProductSize.NOT_APPLICABLE
            };

            _productRepository = new ProductRepository();
            _productRepository.Add(_fireTruck);
            _productRepository.Add(_barbieClassic);
            _productRepository.Add(_frisbee);
            _productRepository.Add(_baseball);
            _productRepository.Add(_toyConvertible);
        }
 public void AddTest()
 {
     ProductRepository productRepository = new ProductRepository();
     Product product = new Product();
     productRepository.Add(product);
 }