From f08167ff1af8a5e2c090da403676af4e76565be6 Mon Sep 17 00:00:00 2001 From: Petrutiu Mihai Date: Tue, 5 Jul 2016 21:06:26 +0300 Subject: [PATCH] Finish StrategyPatternExamples --- src/StrategyPattern/StrategyPatternExamples.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/StrategyPattern/StrategyPatternExamples.cs b/src/StrategyPattern/StrategyPatternExamples.cs index 3e280c6..c5f736d 100644 --- a/src/StrategyPattern/StrategyPatternExamples.cs +++ b/src/StrategyPattern/StrategyPatternExamples.cs @@ -27,15 +27,17 @@ namespace StrategyPattern Console.WriteLine("Now the same example, but implemented with strategy pattern"); ShippingWithStrategyExample.Run(); - //TODO:add more examples - MagnificLoopExample.Run(); + //This is just for fun (Challenged to loop without using conditions/loops) LoopWithExceptionExample.Run(); + //This is just for fun (Challenged to loop without using conditions/loops) + MagnificLoopExample.Run(); + ArrangeInterviewMotivationalExample.Run(InterviewPersons.Get()); - ArrangeInterviewExample.Run(InterviewPersons.Get()); //Show the switch moving problem + ArrangeInterviewExample.Run(InterviewPersons.Get()); } private static string GetDescription()