Skip to content

Commit

Permalink
Each file in its place
Browse files Browse the repository at this point in the history
  • Loading branch information
ayende committed Jul 9, 2011
1 parent 451579b commit 53f336a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
2 changes: 2 additions & 0 deletions HibernatingRhinos.Macto/HibernatingRhinos.Macto.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@
<Compile Include="Models\OfficerPosition.cs" />
<Compile Include="Models\OfficerRank.cs" />
<Compile Include="Models\Processes\AcceptInmateProcess.cs" />
<Compile Include="Models\Processes\AcceptInmateState.cs" />
<Compile Include="Models\Processes\ISaga.cs" />
<Compile Include="Models\ReportType.cs" />
<Compile Include="Models\StickyNote.cs" />
<Compile Include="Models\Warrants\ArrestWarrant.cs" />
Expand Down
12 changes: 2 additions & 10 deletions HibernatingRhinos.Macto/Models/Processes/AcceptInmateProcess.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
namespace HibernatingRhinos.Macto.Models.Processes
{
public class AcceptInmateState
{
}

public interface ISaga<T>
{
}

public class AcceptInmateProcess : ISaga<AcceptInmateState>
{
public class AcceptInmateProcess : ISaga<AcceptInmateState>
{
public AcceptInmateState State { get; set; }
public bool IsCompleted { get; set; }
Expand Down
6 changes: 6 additions & 0 deletions HibernatingRhinos.Macto/Models/Processes/AcceptInmateState.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace HibernatingRhinos.Macto.Models.Processes
{
public class AcceptInmateState
{
}
}
6 changes: 6 additions & 0 deletions HibernatingRhinos.Macto/Models/Processes/ISaga.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace HibernatingRhinos.Macto.Models.Processes
{
public interface ISaga<T>
{
}
}

0 comments on commit 53f336a

Please sign in to comment.