public void Setup()
 {
     notificador = Substitute.For<INotificadorBoletoComProblema>();
     gerenciadorBoletos = new GerenciadorBoletos(notificador);
     retornos = new List<RetornoBoleto>();
     boletos = new List<Boleto>();
 }
 public GerenciadorBoletos(INotificadorBoletoComProblema notificador)
 {
     this.notificador = notificador;
     boletos = new List<Boleto>();
 }