Exemplo n.º 1
0
        public async Task <IActionResult> GetMeetupsByGroupId(int groupId, int userId, int skip, int limit)
        {
            var result = await _service.GetMeetupsByGroupId(groupId, userId, skip, limit);

            return(Ok(result));
        }