//Main method
 static void Main(string[] args)
 {
     ATMWebSvcC myATM = new ATMWebSvcC();
     myATM.GreetingPhase();
     while (true)
     {
         myATM.TransactionsPhase();
     }
 }
        //Main method
        static void Main(string[] args)
        {
            ATMWebSvcC myATM = new ATMWebSvcC();

            myATM.GreetingPhase();
            while (true)
            {
                myATM.TransactionsPhase();
            }
        }