public decimal Get(decimal valorinicial, int meses) { try { decimal taxaJuros = _jurosService.RetornaTaxaJuros(); return(_jurosService.Calcular(valorinicial, meses, taxaJuros)); } catch (Exception e) { throw new System.Exception("Não foi possível realizar o calculo de juros", e.InnerException); } }