Skip to content

Instantly share code, notes, and snippets.

@sahoosunilkumar
Last active March 16, 2019 09:09
Show Gist options
  • Save sahoosunilkumar/7b307e14b06191e920d58d99dea20229 to your computer and use it in GitHub Desktop.
Save sahoosunilkumar/7b307e14b06191e920d58d99dea20229 to your computer and use it in GitHub Desktop.
PaymentApproach1
public class Payment {
public Payment() {
initializePaytm();
}
private void initializePaytm() {
// setup with paytm server
System.out.println("paytm server initialized");
}
public void pay() {
System.out.println("pay by paytm");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment