Sha256: 8eeccab8d2621b6ddf57ff915fbc353f14e8a71ac830d01c54d65d3e11c7b244

Contents?: true

Size: 543 Bytes

Versions: 2

Compression:

Stored size: 543 Bytes

Contents

module SingaporeCPFCalculator
  module Year2023
    module CitizenOrSPR3

      # Payment calculator for Singapore's Central Provident Fund for employee's age 65~70.
      class Age65To70ContributionCalculator < CitizenOrSpr3Base

        extend Requirements::GroupAbove65To70Years

        private

        def tc_rate_1
          "0.085"
        end

        def tc_rate_2
          "0.155"
        end

        def ec_rate
          "0.07"
        end

        def adjustment_rate
          "0.21"
        end

      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
singapore_cpf_calculator-1.5.1 lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_65_to_70_contribution_calculator.rb
singapore_cpf_calculator-1.5.0 lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_65_to_70_contribution_calculator.rb