public int Salvar(MovimentacaoCaixa movimentacaoCaixa)
        {
            try
            {
                InstanciarBanco();
                _banco.Entry(movimentacaoCaixa).State = EntityState.Added;
                return _banco.SaveChanges();
            }
            catch (CustomException erro)
            {
                throw new CustomException(erro.Message);
            }
            catch (Exception erro)
            {
                throw new Exception(erro.Message);
            }

        }
        private bool Alterar(MovimentacaoCaixa mov)
        {

            try
            {
                InstanciarBanco();
                _banco.Entry<MovimentacaoCaixa>(mov).State = EntityState.Modified;
                return _banco.SaveChanges() > 0;
            }
            catch (CustomException error)
            {
                throw new CustomException(error.Message);
            }
            catch (Exception error)
            {
                throw new Exception(error.Message);
            }

        }