PCRB webassembly
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
public class Process {
|
||||
public required string Name { get; set; } = "";
|
||||
|
||||
private static readonly Process Receiving = new Process { Name="Receiving" };
|
||||
private static readonly Process Receiving = new Process { Name = "Receiving" };
|
||||
private static readonly Process Kitting = new Process { Name = "Kitting" };
|
||||
private static readonly Process Cleans = new Process { Name = "Cleans" };
|
||||
private static readonly Process Reactor = new Process { Name = "Reactor" };
|
||||
@ -15,8 +15,10 @@ public class Process {
|
||||
private static readonly Process Conversion = new Process { Name = "Conversion" };
|
||||
private static readonly Process RMA = new Process { Name = "RMA" };
|
||||
private static readonly Process CustomerCompliant = new Process { Name = "Customer Compliant" };
|
||||
private static readonly Process Nontransferrable = new Process { Name = "Nontransferrable" };
|
||||
private static readonly Process PartConversion = new Process { Name = "Part Conversion" };
|
||||
|
||||
public static IEnumerable<Process> ProductionProcesses = new HashSet<Process> {
|
||||
public static IEnumerable<Process> ProductionProcesses = new HashSet<Process> {
|
||||
Cleans,
|
||||
Reactor,
|
||||
Metrology,
|
||||
@ -51,6 +53,8 @@ public class Process {
|
||||
|
||||
public static IEnumerable<Process> QualityProcesses = new HashSet<Process> {
|
||||
RMA,
|
||||
CustomerCompliant
|
||||
CustomerCompliant,
|
||||
Nontransferrable,
|
||||
PartConversion
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user