Skip to content

Instantly share code, notes, and snippets.

View Babatunde50's full-sized avatar
🏛️
buidling

Babatunde Ololade Babatunde50

🏛️
buidling
  • Lagos, Nigeria
View GitHub Profile
abstract class Call {
/**
* Note that the Creator may also provide some default implementation of the
* factory method.
*/
public abstract factoryMethod(): Product; // what a factoryMethod returns is known as a product
/**
* Also note that, despite its name, the Creator's primary responsibility is
* not creating products. Usually, it contains some core business logic that