Update Command pattern example by adding more examples using buy/sell stock

This commit is contained in:
Petrutiu Mihai
2016-06-23 09:39:23 +03:00
parent ae4beae6c2
commit dd93a7c099
7 changed files with 86 additions and 13 deletions

View File

@@ -17,14 +17,14 @@ namespace BehavioralPatterns
//Chain of responsibillity
//This is usefull when you have a request and you don't know who should process it
ChainOfResponsibillityExamples.Run();
Console.ReadKey();
//ChainOfResponsibillityExamples.Run();
//Console.ReadKey();
CommandPatternExamples.Run();
Console.ReadKey();
IteratorPatternExamples.Run();
Console.ReadKey();
//IteratorPatternExamples.Run();
//Console.ReadKey();
}
}