private static void OutputDelayToConsole(int delayForSeconds, ConsoleSpinner spin)
 {
     Console.WriteLine("Waiting to process next user ");
     Stopwatch s = new Stopwatch();
     s.Start();
     while (s.Elapsed < TimeSpan.FromSeconds((delayForSeconds)))
     {
         Thread.Sleep(1);
         spin.Turn();
     };
     s.Stop();
 }