Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Design Patterns

Creational
Singleton,
Factoty,
Abstract
Abstract Factory
etc.

Structural
Adapter,
Bridge
etc.

Behavioural
Chain of Responsibility
Command
Interpreter
etc.

Manager
IEmployeeManager
GetBonus()
GetPay()

ContractEmployeeManager : IEmployeeManager
GetMedicalAllowance();

PermanenetEmployeeManager : IEmployeeManager

Factory
FactoryMethod
BaseEmployeeFactory
public abstract IEmployeeManager Create();
abstract BaseEmployeeFactory

ContractEmployee

You might also like