public void IsApplicable_Failed_Test(int id, string productName, ProductType productType)
        {
            var payment = new Payment(new Product(id, productName, productType));
            var rule    = new MembershipEmail(payment);

            var result = rule.IsApplicable();

            Assert.IsFalse(result);
        }