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

            return(Ok(result));
        }