コード例 #1
0
        public List <Event> GetInactiveEvents()
        {
            // Retrieves and returns a list of inactive events
            List <Event> events = null;

            try
            {
                events = EventAccessor.RetrieveEventsByStatus(false);
                formatTimeForEvents(events);
            }
            catch (Exception)
            {
                throw;
            }

            return(events);
        }