Beispiel #1
0
        public async Task <IActionResult> Info([FromRoute] int id)
        {
            var eventInfo = await _eventLogic.GetEventInfo(id);

            return(Ok(eventInfo));
        }