Add BehavioralPatterns project back again in the solution (somehow it was gone)

Update Scrum example on State pattern
Add Scrum pattern using state role interfaces
This commit is contained in:
Petrutiu Mihai
2016-07-21 13:59:57 +03:00
parent 2bea7d280f
commit 1d04dafb70
5 changed files with 378 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
using StatePattern.FanExample;
using StatePattern.ScrumExample;
using StatePattern.ScrumWithRoleStates;
using StatePattern.TVExample;
using System;
using System.Collections.Generic;
@@ -32,6 +33,9 @@ namespace StatePattern
GoToNextStep();
ScrumStatePatternExample.Run();
GoToNextStep();
ScrumStateWithRoleInterfacesExample.Run();
}
private static void GoToNextStep()