Skip to content

Instantly share code, notes, and snippets.

@digitsensitive
Created August 5, 2020 19:58
Show Gist options
  • Select an option

  • Save digitsensitive/c286f2aca27d7193361d654184395f45 to your computer and use it in GitHub Desktop.

Select an option

Save digitsensitive/c286f2aca27d7193361d654184395f45 to your computer and use it in GitHub Desktop.
export abstract class PizzaFactory {
protected abstract create(): Pizza;
}
export class ProsciuttoFactory extends PizzaFactory {
public create(): Pizza {
let pizza = new Pizza();
pizza.addIngredients([ tomatoes, mozzarella, ham, salt, oliveOil ]);
return pizza;
}
}
export class MargheritaFactory extends PizzaFactory {
public create(): Pizza {
let pizza = new Pizza();
pizza.addIngredients([ tomatoes, mozzarella, basil, salt, oliveOil ]);
return pizza;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment