public ActionResult Interacoes()
        {
            var usuario = Usuario.Load(CurrentUser.Data.SubjectId);
            //var usuario = Usuario.Load("5ad361b3a5dd4855ec5c0336");

            var model = new ContaInteracoesViewModel
            {
                /* base model defaults */
                Title       = "Interações - Massa News",
                Description = "Interações - Massa News",
                Robots      = "noindex, nofollow",
                Canonical   = $"{Constants.UrlWeb}/minha-conta/interacoes",

                Usuario     = CurrentUser.Data,
                Perguntas   = ComunidadeService.GetAllPerguntasByUsuarioId(usuario.Id).ToList(),
                Respostas   = ComunidadeService.GetAllRespostasByUsuarioId(usuario.Id).ToList(),
                Comentarios = ComunidadeService.GetAllComentariosByUsuarioId(usuario.Id).ToList()
            };

            ViewBag.ActiveNav = "Minha conta";

            return(View(model));
        }