public IActionResult HistoricoTransacoes()
 {
     ViewBag.deferidas   = _gerenciadorTransacao.ObterTodasDeferidas(true).Count();
     ViewBag.indeferidas = _gerenciadorTransacao.ObterTodasDeferidas(false).Count();
     return(View());
 }