public CalculadoraJurosCompostoService(ITaxaJurosAPI taxaJurosAPIService)
 {
     _taxaJurosAPIService = taxaJurosAPIService;
 }
 public DefaultFixtures()
 {
     this.TaxaJurosAPIWebService  = new MockTaxaJurosAPIWebService();
     this.ShowMeTheCode           = new ShowMeTheCodeService();
     this.CalculadoraJurosService = new CalculadoraJurosCompostoService(TaxaJurosAPIWebService);
 }