Пример #1
0
        private string PrintCars()
        {
            Transaction t = this.WorkflowControl.Start();

            string[] items  = WorkflowControl.ListCars(t);
            string   result = string.Empty;

            foreach (string r in items)
            {
                result += (r + ";");
            }

            Console.WriteLine(result);
            return(result);
        }