Undo initial program to run all examples

Remove unnecessary variable from StockSchedule
This commit is contained in:
Petrutiu Mihai
2016-06-23 09:41:01 +03:00
parent dd93a7c099
commit 2f98e10ee2
2 changed files with 4 additions and 5 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();
}
}