예제 #1
0
        public void takeReservation()
        {
            string time = GetInput.getPartyTime();
            string size = GetInput.getPartySize();
            string name = GetInput.getPartyName();

            reservationList.Add(time);
            reservationList.Add(size);
            reservationList.Add(name);
        }