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