structural

Design Patterns – Facade

Sometimes our programs become too complex and some objects are being difficult to use and many times these processes for being using an object are repetitive and almost the same. In these cases, we can provide a Facade and with it, we are able to hide unnecessary processes and provide to our users only what Design Patterns – Facade

Design Patterns – Adapter

This Structural Design Pattern is used to convert an interface of a class to a different form, this allows that some different classes could work together. It ‘s the perfect approach to be used with Third Parties objects. An adapter allows you to translate one interface for use with another. Adapters could be implemented using Design Patterns – Adapter