Skip to content

Instantly share code, notes, and snippets.

@mohamed-gara
Last active April 10, 2019 20:31
Show Gist options
  • Save mohamed-gara/9572cefa73d7cceada50e590ac53074e to your computer and use it in GitHub Desktop.
Save mohamed-gara/9572cefa73d7cceada50e590ac53074e to your computer and use it in GitHub Desktop.
export class Order {
constructor(private discount: DiscountCalculator, private amount: number) {}
discountedAmount() {
return (100 - this.discount.discount()) * this.amount;
}
}
export interface DiscountCalculator {
discount();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment