public async Task <IActionResult> GetMovimentacoes()
 {
     try
     {
         return(Ok(await _movimentacaoRepository.Get()));
     }
     catch (Exception)
     {
         return(this.StatusCode(StatusCodes.Status500InternalServerError, "Banco de dados falhou."));
     }
 }