Facade ნიმუში უზრუნველყოფს გამარტივებულ ინტერფეისს რთული ქვესისტემის სამար — მისი სირთულის დამალვა ერთი, სუფთა შესვლის წერტილის უკან. იგი რთული კომპონენტების ერთობლიობას უფრო გამოსაყენებელს ხდის, ხოლო ძირითადი დეტალებებზე წვდომის გარეშე.
რა აკეთებს 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
