Esempio n. 1
0
        public IActionResult FindEventsByCountry(string country)
        {
            var events = _eventAppService.FindEventsByCountry(country);

            return(Result(events));
        }