private void TotalOutingCost()
        {
            decimal totalCost = _outingRepo.CalcTotalOutingCost(_outings);

            Console.WriteLine($"Total cost for all events is: {totalCost}");
        }