Exemplo n.º 1
0
        private List <string> GetUsedTransitions(ProcessInstance processInstance)
        {
            var piTree          = _runtime.GetProcessInstancesTree(processInstance);
            var usedTransitions = piTree.Root.GetAllChildrenNames();

            return(usedTransitions);
        }