Exemplo n.º 1
0
 private void ProcessChoice(string choice)
 {
     switch (choice)
     {
         case "1":
         case "2":
             Console.WriteLine("This feature is not implemented yet!");
             Console.WriteLine("Press enter to continue...");
             Console.ReadLine();
             break;
         case "3":
             LookupWorkflow lwf = new LookupWorkflow();
             lwf.Execute();
             break;
         default:
             Console.WriteLine("{0} is an invalid entry!", choice);
             Console.WriteLine("Press enter to continue...");
             Console.ReadLine();
             break;
     }
 }
Exemplo n.º 2
0
        private void ProcessChoice(string choice)
        {
            switch (choice)
            {
            case "1":
            case "2":
                Console.WriteLine("This feature is not implemented yet!");
                Console.WriteLine("Press enter to continue...");
                Console.ReadLine();
                break;

            case "3":
                LookupWorkflow lwf = new LookupWorkflow();
                lwf.Execute();
                break;

            default:
                Console.WriteLine("{0} is an invalid entry!", choice);
                Console.WriteLine("Press enter to continue...");
                Console.ReadLine();
                break;
            }
        }