Esempio n. 1
0
 public CacheContratoDAO()
 {
     clienteDAO           = new ClienteDAO();
     tipoEventoDAO        = new TipoEventoDAO();
     modalidadServicioDAO = new ModalidadServicioDAO();
     tipoAmbientacionDAO  = new TipoAmbientacionDAO();
 }
Esempio n. 2
0
 public ContratoDAO()
 {
     clienteDAO           = new ClienteDAO();
     tipoEventoDAO        = new TipoEventoDAO();
     modalidadServicioDAO = new ModalidadServicioDAO();
     coffeeBreakDAO       = new CoffeeBreakDAO();
     cocktailDAO          = new CocktailDAO();
     cenaDAO = new CenaDAO();
 }
Esempio n. 3
0
 public CoffeeBreakDAO()
 {
     tipoEventoDAO = new TipoEventoDAO();
 }
Esempio n. 4
0
 public CenaDAO()
 {
     tipoEventoDAO       = new TipoEventoDAO();
     tipoAmbientacionDAO = new TipoAmbientacionDAO();
 }
Esempio n. 5
0
 public CocktailDAO()
 {
     tipoEventoDAO       = new TipoEventoDAO();
     tipoAmbientacionDAO = new TipoAmbientacionDAO();
 }
Esempio n. 6
0
 public ModalidadServicioDAO()
 {
     tipoEventoDao = new TipoEventoDAO();
 }