| | |
| | | return; |
| | | |
| | | ProcessInputsSelectForm inputsSelectForm = new ProcessInputsSelectForm(ProcessName, ProcessRunBll); |
| | | inputsSelectForm.Text = ProcessName; |
| | | inputsSelectForm.ProcessName = ProcessName; |
| | | inputsSelectForm.ShowDialog(); |
| | | |
| | | ProcessRunBll.SaveInputs(); |
| | | ProcessRunBll.SaveOutputs(); |
| | | ProcessRunBll.CompileMappings(); |
| | | //string ProcessPath = GlobalVar.allProcessPath + ProcessRunBll.Name + "\\" + ProcessName + ".json"; |
| | | //((IProcess)dicSteps[ProcessName]).Load(ProcessPath); |
| | | string ProcessPath = GlobalVar.allProcessPath + ProcessRunBll.Name + "\\" + ProcessName + ".json"; |
| | | ((IProcess)dicSteps[ProcessName]).Load(ProcessPath); |
| | | } |
| | | |
| | | public void DeleteProcess(string ProcessName) |