public Outing CreateNewOuting()
        {
            string outingType;

            Console.WriteLine("What type of event are you creating?" +
                              "\n1. Golf" +
                              "\n2. Bowling" +
                              "\n3. Amusement Park" +
                              "\n4. Concert");
            string response = Console.ReadLine();

            switch (response)
            {
            case "1":
                outingType = "Golf";
                break;

            case "2":
                outingType = "Bowling";
                break;

            case "3":
                outingType = "Amusement Park";
                break;

            default:
                outingType = "Concert";
                break;
            }
            Console.WriteLine("How many people attended this event?");
            int numberOfAttendees = outingRepo.ParseResponseToInt();

            Console.WriteLine("What was the date of the event?");
            string dateOfEvent = Console.ReadLine();

            Console.WriteLine("What was the cost per person? (0.00)");
            decimal costPerPerson  = outingRepo.ParseResponseToDecimal();
            decimal totalEventCost = costPerPerson * numberOfAttendees;
            Outing  newOuting      = new Outing(outingType, numberOfAttendees, dateOfEvent, costPerPerson,
                                                totalEventCost);

            return(newOuting);
        }