2022-01-06 22:58:51 +00:00
|
|
|
|
namespace Workplace
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Cnst
|
|
|
|
|
|
{
|
|
|
|
|
|
public const int ExtraPieces = 10;
|
|
|
|
|
|
public const int NrGeneratorsCount = 5;
|
|
|
|
|
|
public const int MinGeneratedNr = 300000000;
|
2022-03-21 17:28:12 +00:00
|
|
|
|
public const long MaxPredefinedOrderNr = 1000;
|
2022-01-06 22:58:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public enum OrderProgress
|
|
|
|
|
|
{
|
|
|
|
|
|
NotStarted,
|
|
|
|
|
|
InProgress,
|
|
|
|
|
|
Overproduction,
|
|
|
|
|
|
Completed,
|
|
|
|
|
|
Error,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|