Untitled

 avatar
unknown
plain_text
4 years ago
460 B
4
Indexable
            graph.ClassWorkflowNode.Where(s => s.InicioFloxo).ToList().ForEach(s =>
            {
                if (String.IsNullOrEmpty(s.Label))
                    s.Label = "Inicio_" + nSeqId++.ToString();
            });

            graph.ClassWorkflowNode.Where(s => s.FimFluxo).ToList().ForEach(s =>
            {
                if (String.IsNullOrEmpty(s.Label))
                    s.Label = "Fim_" + nSeqId++.ToString();
            });
Editor is loading...