Example #1
0
        public HttpResponseMessage ObterTop5PerguntasNumUpvote()
        {
            var topPerguntas    = perguntasRepositorio.ObterTop5PerguntasMaiorNumUpvotes();
            var topPerguntasDto = CriarPerguntaTop5Dto(topPerguntas);

            return(ResponderOK(topPerguntasDto));
        }