public void ProductExists()
        {
            var result = ProductLogic.Exists(p);

            Assert.IsTrue(result);
        }
        public void ProductExists_ShouldFail()
        {
            var result = ProductLogic.Exists(newProduct);

            Assert.IsTrue(result);
        }