Example #1
0
        public static FlowDefineStep MoveToNextFlowStep(int currentIndex, FlowDefineModel flowDefine)
        {
            var nextFlowSteps = flowDefine.Steps.Where(a => a.Index > currentIndex).OrderBy(a => a.Index);

            if (nextFlowSteps == null)
            {
                return(null);
            }
            else
            {
                return(nextFlowSteps.FirstOrDefault());
            }
        }
Example #2
0
 private static void ApproveScrapEQRequest(string ticketNo, string currentUser, FlowDefineModel flowDefine, string strComments)
 {
 }