public AnuncioController(IAnuncioRepositorio _AnuncioRepositorio)
 {
     AnuncioServico = new AnuncioCommand(_AnuncioRepositorio);
 }
Beispiel #2
0
 public AnuncioCommand(IAnuncioRepositorio _AnuncioRepositorio)
 {
     AnuncioRepositorio = _AnuncioRepositorio;
 }
 public AnuncioServicos(IAnuncioRepositorio anuncioRepositorio)
 {
     _repositorio = anuncioRepositorio;
 }
Beispiel #4
0
 public AnuncioController(IAnuncioServicos anuncioServicos, IAnuncioRepositorio anuncioRepositorio)
 {
     _repositorio = anuncioRepositorio;
     _servicos    = anuncioServicos;
 }
 public AnuncioController(IAnuncioService anuncioService, IAnuncioRepositorio anuncioRepositorio)
 {
     _anuncioService     = anuncioService;
     _anuncioRepositorio = anuncioRepositorio;
 }
Beispiel #6
0
 public AnuncioService(IAnuncioRepositorio anuncioRepositorio)
 {
     _anuncioRepositorio = anuncioRepositorio;
 }