Example #1
0
        public void CostOfAllEvents()
        {
            Console.Clear();
            decimal cost = _eventRepository.CalculateCostOfAllEvents();

            Console.WriteLine($"The cost of all events was ${cost}.\n" +
                              $"Press any key to continue");
            Console.ReadKey();
            Console.Clear();
        }