Skip to content

Instantly share code, notes, and snippets.

@iyengarajay
Last active July 13, 2016 11:06
Show Gist options
  • Save iyengarajay/900bf2993409118466f3ce560f9b545a to your computer and use it in GitHub Desktop.
Save iyengarajay/900bf2993409118466f3ce560f9b545a to your computer and use it in GitHub Desktop.
public class BillingStrategy {
public static Double getNormalStrategy(Double d){
return d;
}
public static Double getHappyHourStrategy(Double d){
return d * 0.5;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment