17 lines
350 B
C#
17 lines
350 B
C#
namespace Xylem.Common.Logic.ProductionOrderCore
|
|
{
|
|
/// <summary>
|
|
/// Enumeration of order state
|
|
/// </summary>
|
|
public enum OrderState
|
|
{
|
|
Created,
|
|
PressureTested,
|
|
FullyAssembled,
|
|
HydraulicPrepared,
|
|
HydraulicTuned,
|
|
HydraulicTestSuccessfully,
|
|
FinalCheckSuccessfully,
|
|
}
|
|
}
|