Home - GetcuReone/ComboPatterns GitHub Wiki

Welcome to the ComboPatterns wiki!

This project is my implementation of pattern combinations that I worked with. Over time, I will replenish the documentation. Implemented pattern combinations will be listed on this page. For implementation, I used c # language.

ComboPatterns

This library contains a set of interfaces that will be used later for Implementation. More here

ComboPatterns.Factory

This project contains an implementation of the interface IAbstractFactory. The interaction of most pattern implementations will be built on this interface. An implementation is class FactoryBase with simply a method of creating objects.

The performance of the FactoryBase is tested by tests.

ComboPatterns.Facade

This project contains an implementation of the interface IFacade. More here

ComboPatterns.Adapter

This project contains an implementation of the interface IAdapter. More here