Пример #1
0
        public static Dictionary <string, InFlowSteps> GetInFlowSteps(string eqpID)
        {
            Dictionary <string, InFlowSteps> steps = new Dictionary <string, InFlowSteps>();

            ArrangeStepsByEqpID.TryGetValue(eqpID, out steps);

            return(steps);
        }
Пример #2
0
        //Input Perstist EqpStepTime 에서 가능설비 로딩
        public static void AddStep(string eqpID, string productID, FabStep step)
        {
            InFlowSteps inflowSteps = ArrangeStepsByEqpID.Get(eqpID, productID);

            if (inflowSteps == null)
            {
                inflowSteps = CreateHelper.CreateInFlowSteps(eqpID, productID);
                ArrangeStepsByEqpID.Set(eqpID, productID, inflowSteps);
            }

            inflowSteps.Steps.Add(step);
        }