Ejemplo n.º 1
0
        public ActionResult <IEnumerable <CommentDTO> > Get(int comments, int user, int id)
        {
            var dtos = tasksService.GetComments(id);

            return(Ok(dtos));
        }