public IReadOnlyList <IEvent> GetEvents(string country) { if (_events.TryGetValue(country, out var events)) { return(events); } return(LinqUtils.EmptyList <IEvent>()); }