Exemple #1
0
 public ServicoAnuncio(IRepositorioAnuncio repositorioDeAnuncios,
                       IRepositorioAutomovel repositorioDeAutomovel,
                       IRepositorioEstatisticaAnuncio repositorioEstatisticaAnuncio,
                       IServicoAnunciante servicoDeAnunciante)
 {
     this.repositorioDeAnuncios = repositorioDeAnuncios;
     this.servicoDeAnunciante = servicoDeAnunciante;
     this.repositorioEstatisticaAnuncio = repositorioEstatisticaAnuncio;
     this.repositorioDeAutomovel = repositorioDeAutomovel;
 }
 public ServicoEstatisticaAnuncio(IRepositorioEstatisticaAnuncio repositorioEstatisticaAnuncio)
 {
     this.repositorioEstatisticaAnuncio = repositorioEstatisticaAnuncio;
 }