Skip to content

Instantly share code, notes, and snippets.

@alibahaaa
Created January 18, 2023 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alibahaaa/d752049c33360ee33a6c28687efd0f82 to your computer and use it in GitHub Desktop.
Save alibahaaa/d752049c33360ee33a6c28687efd0f82 to your computer and use it in GitHub Desktop.
class ConcreteFactory1 : AbstractFactory {
override fun createProductA(): ProductA {
return ConcreteProductA1()
}
override fun createProductB(): ProductB {
return ConcreteProductB1()
}
}
class ConcreteFactory2 : AbstractFactory {
override fun createProductA(): ProductA {
return ConcreteProductA2()
}
override fun createProductB(): ProductB {
return ConcreteProductB2()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment