Last active
September 8, 2020 10:26
-
-
Save dimitris-papadimitriou-chr/ae9e48dbcda048d5b848fce84b62759a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@FunctionalInterface | |
public interface DiscountStrategy { | |
double getDiscounted(double discount, double price); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment