Exemplo n.º 1
0
        public async Task <IActionResult> Unlike(int id,
                                                 [FromHeader(Name = "userId")] int userId)
        {
            var removedEntity = await _postCommentService.UnlikeAsync(id, userId);

            return(Ok(removedEntity));
        }