Add project files

This commit is contained in:
Petrutiu Mihai
2016-07-14 12:00:45 +03:00
parent 76b83a04a4
commit 36c3127081
41 changed files with 1265 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using ChainOfResponssibility;
using ChainOfResponssibility.PurchaseExample;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
namespace BehavioralPatterns
{
public class Program
{
public static void Main(string[] args)
{
//Chain of responsibillity
//This is usefull when you have a request and you don't know who should process it
ChainOfResponsibillityExamples.Run();
Console.ReadKey();
}
}
}