Example #1
0
        public IActionResult Event(int eventId)
        {
            var model = new EventViewModel
            {
                People      = _service.GetPeople(),
                MeetupEvent = _service.GetMeetupEvent(eventId)
            };

            return(View(model));
        }