public void Assess_Amount_Less_Than_TwoHundredThousand_When_Flat_Value_Calculation()
        {
            decimal result = 0;

            result = _flatValueTaxEvent.TaxCalculator(120000);
            //assert if the 5% was applied to amount
            Assert.AreEqual(6000, result);
        }