RefactoringGolf.Store.Employee.Tax C# (CSharp) Méthode

Tax() private méthode

private Tax ( ) : decimal
Résultat decimal
        private decimal Tax()
        {
            decimal tax = 0;
            if (this.FixedSalary > 3500)
                tax = this.FixedSalary*5/100;
            return tax;
        }