Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fmo91/f771ff0c33a8636fdea19726435cf631 to your computer and use it in GitHub Desktop.
Save fmo91/f771ff0c33a8636fdea19726435cf631 to your computer and use it in GitHub Desktop.
class TaxesCalculator {
func applyTaxes(to subtotal: Double) -> Double {
// Some weird taxes logic 😨
subtotal * 1.21
}
}
class ProductsCalculator {
private let taxesCalculator = TaxesCalculator()
// ...
func calculateTotal() -> Double {
let subtotal = products.map({ $0.price }).reduce(0, +)
return taxesCalculator.applyTaxes(to: subtotal)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment