public void Stored_tax_rate_should_be_retrievable()
        {
            const decimal taxRate = 25m;

            var taxStore = new TaxRepository();

            taxStore.StoreTaxRate(taxRate);

            var taxRateValue = taxStore.RetrieveTaxRate();

            Assert.AreEqual(taxRate, taxRateValue);
        }