Sha256: 653a8c53f8ce9dd6026b822c88cb66995264ee70279d322b0db28b4da54b3f8b
Contents?: true
Size: 866 Bytes
Versions: 3
Compression:
Stored size: 866 Bytes
Contents
require_relative "spr_1_gg/age_55_below_contribution_calculator" require_relative "spr_1_gg/age_55_to_60_contribution_calculator" require_relative "spr_1_gg/age_60_to_65_contribution_calculator" require_relative "spr_1_gg/age_65_up_contribution_calculator" module SingaporeCPFCalculator module Year2022 # For Singapore Permanent Resident (SPR) on their first year with graduated (G, partial) # employer contribution and graduated (G, partial) employee contribution module SPR1GG extend ResidencyModuleCommon extend SPR1GGCommon class << self private def calculators [ Age55BelowContributionCalculator, Age55To60ContributionCalculator, Age60To65ContributionCalculator, Age65UpContributionCalculator, ] end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems