示例#1
0
        public async Task <string> DeleteCommentsList([FromQuery] int postid, [FromBody] List <int> commentsListId)
        {
            await _context.DeleteCommentsListAsync(postid, commentsListId);

            return("true");
        }