InstaTax.Core.DomainObjects.AnnualSalary.PercentageOfBasicBasedOnLocality C# (CSharp) Method

PercentageOfBasicBasedOnLocality() private method

private PercentageOfBasicBasedOnLocality ( bool fromMetro ) : double
fromMetro bool
return double
        private double PercentageOfBasicBasedOnLocality(bool fromMetro)
        {
            if (fromMetro)
                return Basic*0.5;
            return Basic*0.4;
        }