public async Task <double> Get(double valorInical, int meses) { try { await _taxaJurosService.Get(); double idc = _taxaJurosService.GetIdc(); double ValorFinal = valorInical * Math.Pow(1 + idc, meses);; return(Math.Truncate(ValorFinal * 100) / 100); } catch (Exception e) { throw new Exception($"Erro calculando Valor atualizado, {e.Message}"); } }