public void Test_ObterTaxaJuros_TipoDado()
        {
            // Act
            var data = _dao.ObterTaxaJuros().Result;

            // Assert
            Assert.IsType <decimal>(data);
        }
        public decimal CalculaJuros(decimal valorInicial, int meses)
        {
            decimal retorno;
            decimal taxaJuros;

            if (meses < 0)
            {
                throw new ArgumentOutOfRangeException();
            }

            taxaJuros = _dao.ObterTaxaJuros().Result;

            retorno = FormulaJuros(valorInicial, meses, taxaJuros);

            return(retorno);
        }