Exemplo n.º 1
0
        public async Task <IActionResult> DeleteMeetupCommentAsync(int meetupid, string commentid, int userid)
        {
            var result = await _service.DeleteMeetupCommentAsync(meetupid, commentid, userid);

            return(Ok(result));
        }