public void YearlyInterestRate2()
        {
            const decimal YearlyInterestRateAsPercentage = 3.25m;
            const decimal Result = 0.0325m;

            Assert.AreEqual(YearlyInterestRateAsPercentage.YearInterestFraction(), Result);
        }
        public void YearlyInterestRate1()
        {
            const double YearlyInterestRateAsPercentage = 3.25d;
            const double Result = 0.0325d;

            Assert.AreEqual(YearlyInterestRateAsPercentage.YearInterestFraction(), Result);
        }