Skip to content

Instantly share code, notes, and snippets.

@kellysutton
Created May 13, 2017 19:22
Show Gist options
  • Save kellysutton/0db15dd0265fc2725a6ed8767a46b2a8 to your computer and use it in GitHub Desktop.
Save kellysutton/0db15dd0265fc2725a6ed8767a46b2a8 to your computer and use it in GitHub Desktop.
class TaxCalculationSaver
def self.save_taxes!(payroll)
total_tax_amount = payroll.employees.map do |employee|
TaxCalculator.calculate(payroll, employee)
end.sum
PayrollSaver.save!(payroll, total_tax_amount: total_tax_amount)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment