Beispiel #1
0
        public static void RegisterNewContestant(Sweepstakes sweepstake)
        {
            UI.RegisterNewContestant();
            string     name       = Console.ReadLine();
            Contestant contestant = new Contestant();

            UI.GetInfo(contestant);
            sweepstake.Registercontestant(contestant);
            Console.WriteLine("Awesome! Your registered! You will be notified if you have won!");
            UI.Menu();
        }