RefactoringGolf.Store.Employee.Tax C# (CSharp) 메소드

Tax() 개인적인 메소드

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