public ActionResult GetUsuarioBloqueado() { var retorno = _usuarioApp.GetUsuarioBloqueado(UsuarioLogado.Id); if (!retorno.IsSuccessStatusCode) { return(ErrorMessage(retorno.Content.ReadAsStringAsync().Result)); } var usuario = JsonConvert.DeserializeObject <IEnumerable <Models.Entity.Usuario> >( retorno.Content.ReadAsStringAsync().Result); return(PartialView("Abas/_UsuarioBloqueado", usuario)); }