Skip to content

Instantly share code, notes, and snippets.

View alirezanqp's full-sized avatar
:octocat:

Alireza Naghdipour alirezanqp

:octocat:
View GitHub Profile
class Context {
private strategy: Strategy;
constructor(strategy: Strategy) {
this.strategy = strategy
}
public setStrategy(strategy: Strategy) {
this.strategy = strategy
}