public void GetByProductIdTest()
        {
            ProductOptionRepository repo = new ProductOptionRepository();

            List <ProductOption> options = repo.GetByProductID(Guid.Parse("8f2e9176-35ee-4f0a-ae55-83023d2db1a3"));

            Assert.AreEqual(2, options.Count);
        }