« Facade pattern » : différence entre les versions
Apparence
Page créée avec « Category:CSharp Category:Design Patterns = Definition = Provide a unified interface to a set of interfaces in a subsystem.<br> Facade defines a higher-level interf… » |
|||
Ligne 4 : | Ligne 4 : | ||
Provide a unified interface to a set of interfaces in a subsystem.<br> | Provide a unified interface to a set of interfaces in a subsystem.<br> | ||
Facade defines a higher-level interface that makes the subsystem easier to use. | Facade defines a higher-level interface that makes the subsystem easier to use. | ||
* Reorganize a system with many subsystems into identifiable layers with single entry points | |||
* Simplify the interface to a complex subsystem | |||
= Exemple = | = Exemple = |
Version du 7 juin 2020 à 22:03
Definition
Provide a unified interface to a set of interfaces in a subsystem.
Facade defines a higher-level interface that makes the subsystem easier to use.
- Reorganize a system with many subsystems into identifiable layers with single entry points
- Simplify the interface to a complex subsystem