Move UserStoryState to MotivationalExample

This commit is contained in:
Petrutiu Mihai
2016-07-21 11:50:54 +03:00
parent 1a429e7490
commit 2bea7d280f
2 changed files with 5 additions and 12 deletions

View File

@@ -30,6 +30,11 @@ namespace StatePattern.ScrumExample
public UserStoryState State { get; set; }
}
public enum UserStoryState
{
New = 0, Active = 1, Resolved = 2, Closed = 3, Removed = 4
}
/// <summary>
/// User story states: New, Active, Resolved, Closed, Removed
/// Actions on user stories:

View File

@@ -1,12 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace StatePattern.ScrumExample
{
public enum UserStoryState
{
New = 0, Active = 1, Resolved = 2, Closed = 3, Removed = 4
}
}