public GestionarimagenProductoServicio()
 {
     gestorODBC        = new ConexionSqlServer();
     imagenProductoDAO = new ImagenProductoDAOSqlServer(gestorODBC);
 }
 public SubCategoriaDAOSqlServer(GestorODBC gestorODBC)
 {
     this.gestorODBC = gestorODBC;
 }
Exemplo n.º 3
0
 public GestionarCategoriaServicio()
 {
     gestorODBC   = new ConexionSqlServer();
     categoriaDAO = new CategoriaDAOSqlServer(gestorODBC);
 }
 public GestionarLineaSubCategoriaServicio()
 {
     gestoriODBC          = new ConexionSqlServer();
     lineaSubCategoriaDAO = new LineaSubCategoriaDAOSqlServer(gestoriODBC);
 }
Exemplo n.º 5
0
 public UsuarioDAOSqlServer(GestorODBC gestorODBC)
 {
     this.gestorODBC = gestorODBC;
 }
Exemplo n.º 6
0
 public ProductoImagenDAOSqlServer(GestorODBC gestorODBC)
 {
     this.gestorODBC = gestorODBC;
 }
 public GestionarProductoImagenServicio()
 {
     gestorODBC        = new ConexionSqlServer();
     productoImagenDAO = new ProductoImagenDAOSqlServer(gestorODBC);
 }
Exemplo n.º 8
0
 public GestionarUsuarioServicio()
 {
     gestorODBC   = new ConexionSqlServer();
     ususuarioDAO = new UsuarioDAOSqlServer(gestorODBC);
 }
 public ContactoDAOSqlServer(GestorODBC gestorODBC)
 {
     this.gestorODBC = gestorODBC;
 }
Exemplo n.º 10
0
 public GestionarContactoServicio()
 {
     gestorODBC  = new ConexionSqlServer();
     contactoDAO = new ContactoDAOSqlServer(gestorODBC);
 }