From 5802009ffbf7958a4bbfcd36952cb4a1bbaa8798 Mon Sep 17 00:00:00 2001 From: Petrutiu Mihai Date: Wed, 13 Jul 2016 18:53:54 +0300 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index ae9f53a..2a71c4c 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,27 @@ BehavioralPatterns ================== Behavioral Patterns is a .NET core solution that shows some ways to implement the behavioral patterns described by the Gang of Four. Patterns described: + +[1. Chain of responssibility pattern](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#1-chain-of-responssibility) + +[2. Command](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#2-command-pattern) + +[3. Iterator](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#3-iterator-pattern) + +[4. Mediator](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#4-mediator-pattern) + +[5. Memento](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#5-memento-pattern) + +[6. Observer](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#6-observer-pattern) + +[7. State](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#7-state-pattern) + +[8. Strategy](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#8-strategy-pattern) + +[9. Template](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#9-template-pattern) + +[10 Visitor](https://github.com/MihaiTheCoder/BehavioralPatterns/blob/master/README.md#10-visitor-pattern) + 1. Chain of responssibility --------------------------- Implemented in project: ChainOfResponsibility