Beispiel #1
0
 public ServicoController(ServicoDAO servicoDAO, UsuarioDAO usuarioDAO, SubCategoriaDAO subCategoriaDAO, AnuncioDAO anuncioDAO)
 {
     this.servicoDAO = servicoDAO;
     this.usuarioDAO = usuarioDAO;
     this.subCategoriaDAO = subCategoriaDAO;
     this.anuncioDAO = anuncioDAO;
 }
 public AreaAdministrativaController(UsuarioDAO usuarioDAO, AnuncioDAO anuncioDAO)
 {
     this.usuarioDAO = usuarioDAO;
     this.anuncioDAO = anuncioDAO;
 }
Beispiel #3
0
 public HomeController(AnuncioDAO anuncioDAO, ImagemDAO imagemDAO)
 {
     this.anuncioDAO = anuncioDAO;
     this.imagemDAO = imagemDAO;
 }