Example #1
0
        public void SeeAllOutings()
        {
            List <Outings> outings = _repo.SeeAllOutings();

            foreach (Outings outing in outings)
            {
                Console.WriteLine($"Type of Outing: {outing.TypeOfOuting} \n" +
                                  $"Number of Attendees: {outing.NumberOfAttendees} \n" +
                                  $"Date of Outing: {outing.DateOfOuting} \n" +
                                  $"Total Cost per Attendee: {outing.TotalCostPerAttendee} \n" +
                                  $"Total Cost of Outing: {outing.TotalCostOfOuting} \n");
            }
            Console.ReadKey();
        }