示例#1
0
        public IReadOnlyList <IEvent> GetEvents(string country)
        {
            if (_events.TryGetValue(country, out var events))
            {
                return(events);
            }

            return(LinqUtils.EmptyList <IEvent>());
        }