Skip to content

Instantly share code, notes, and snippets.

@sidcool1234
Last active May 31, 2021 06:17
Show Gist options
  • Save sidcool1234/5f7a5ce9a44af2a3448b8943f1cd86d7 to your computer and use it in GitHub Desktop.
Save sidcool1234/5f7a5ce9a44af2a3448b8943f1cd86d7 to your computer and use it in GitHub Desktop.
public class Customer {
public String type;
}
public class ProcessOrder
{
public int getOrderGrandTotal(Customer customer, int subTotal)
{
if (customer.type.equals("EMPLOYEE"))
{
return subTotal - 20;
}
else if (customer.type.equals("NON_EMPLOYEE"))
{
return subTotal - 10;
}
return subsTotal;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment