private async Task <string> MontaHtml(int idUsuario) { var notificacao = await _repoNotificacao.PesquisarPor(x => x.IdNotificacao == Convert.ToInt32(_appConfig.IdNotificacao)); var html = notificacao.FirstOrDefault().Html.Replace("[URLRECUPERAR]", _appConfig.UrlFront + idUsuario); return(html); }