MCPcopy Create free account
hub / github.com/Anchals24/Low-Level-Design / MakeThePayment

Class MakeThePayment

TemplateDesignPattern/MakeThePayment.java:3–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package BehaviouralDesignPatterns.TemplateDesignPattern;
2
3public class MakeThePayment {
4 public static void main(String[] args) {
5 PaymentFlow paymentFlow = new PayToFriend();
6 paymentFlow.sendMoney();
7
8 PaymentFlow paymentFlow1 = new PayToMerchant();
9 paymentFlow1.sendMoney();
10 }
11
12}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected