Click here to Skip to main content
15,891,253 members
Articles / Programming Languages / C#

Who cares about Domain Rules?

Rate me:
Please Sign up or sign in to vote.
4.96/5 (88 votes)
20 Nov 2006MIT12 min read 96.2K   85   118  
With this article, I am evolving a domain problem towards the best possible solution.
namespace BusinessRules.Evolution_Three
{
    /// <summary>
    /// Australian Investor Business Rule Domain object specific to australian investors.
    /// </summary>
    internal class AustralianIncomeTaxEngine : IncomeTaxEngine
    {
        #region Methods

        /// <summary>
        /// Calculates the tax rate.
        /// </summary>
        /// <param name="income">The investor.</param>
        /// <returns>
        /// Returns a double representing the tax liability for the investor.
        /// </returns>
        public override double CalculateTaxRate(double income)
        {
            if (income >= 0.0 && income <= 6000.99)
                return 0.0;
            else if (income >= 6001.00 && income <= 25000.99)
                return 0.15;
            else if (income >= 25001.00 && income <= 75000.99)
                return 0.30;
            else if (income >= 75001.00 && income <= 150000.99)
                return 0.40;
            else
                return 0.45;
        }

        /// <summary>
        /// Calculates the tax liability.
        /// </summary>
        /// <param name="income">The investor.</param>
        /// <returns>
        /// Returns a double representing the tax rate for the investor.
        /// </returns>
        public override double CalculateTaxLiability(double income)
        {
            double taxLiability = 0.0;

            if (income >= 6001.00 && income <= 25000.99)
            {
                taxLiability += (income - 6000.99) * 0.15;
            }
            if (income > 25000.99)
            {
                taxLiability += (25000.99 - 6001.00) * 0.15;
            }
            if (income > 75000.99)
            {
                taxLiability += (75000.99 - 25001.00) * 0.30;
            }
            if (income >= 25001.00 && income <= 75000.99)
            {
                taxLiability += (income - 25001.00) * 0.30;
            }
            if (income > 150000.99)
            {
                taxLiability += (150000.99 - 75001.00) * 0.40;
            }
            if (income >= 75001.00 && income <= 150000.99)
            {
                taxLiability += (income - 75001.00) * 0.40;
            }
            if (income > 150000.99)
            {
                taxLiability += (income - 150000.99) * 0.45;
            }
            return taxLiability;
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Web Developer
New Zealand New Zealand
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions