Facade पैटर्न एक जटिल subsystem के लिए एक सरलीकृत interface प्रदान करता है — इसकी जटिलता को एक एकल, साफ-सुथरे प्रवेश बिंदु के पीछे छिपाते हुए। यह components के एक जटिल समूह को उपयोग करने में आसान बनाता है, अंतर्निहित विवरण तक पहुँच हटाए बिना।
Facade पैटर्न क्या करता है
FACADE → a SIMPLE interface in front of a COMPLEX subsystem:
→ the subsystem has many components/steps; the facade provides ONE easy interface
→ clients use the simple facade instead of dealing with the complexity directly
→ the facade coordinates the underlying components
→ HIDE complexity behind a clean, easy-to-use interface
