Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Facade

Provides a simple entry point (Facade) in front of several subsystems, so callers don't need to know how SubSystemOne, SubSystemTwo and SubSystemThree interact.

Use it when: a subsystem is made up of many moving parts and most callers only need a couple of common, high-level operations.

Watch out: a facade should stay a thin coordinator. If it starts containing real business logic, that logic probably belongs in the subsystem instead.

Run

dotnet run --project FacadePattern