ComboPatterns - GetcuReone/ComboPatterns GitHub Wiki

ComboPatterns

This library contains a set of interfaces that will be used later for Implementation. It contains the following interfaces:

IAbstractFactory

This interface will be used to implement the abstract factory pattern. You can look at it in more detail here

IFacadeCreation

The interface for creating facades. You need to inherit from it when you need a method of creating a façade. You can look at it in more detail here

IFacade

Facade interface. All that this facade obliges you to be able to create other facades. You can look at it in more detail here

IAdapterCreation

The interface for creating adapteres. You need to inherit from it when you need a method of creating a adapter. You can look at it in more detail here

IAdapter

Adapter interface. All that this adapterobliges you to be able to create other facades.. You can look at it in more detail here

IFacade

This interface will be used to implement the façade pattern. You can look at it in more detail here

IProxyCreation

This interface will be used to implement the pattern factory method for creating proxies. You can look at it in more detail here