コード例 #1
0
 public GestionarimagenProductoServicio()
 {
     gestorODBC        = new ConexionSqlServer();
     imagenProductoDAO = new ImagenProductoDAOSqlServer(gestorODBC);
 }
コード例 #2
0
 public SubCategoriaDAOSqlServer(GestorODBC gestorODBC)
 {
     this.gestorODBC = gestorODBC;
 }
コード例 #3
0
 public GestionarCategoriaServicio()
 {
     gestorODBC   = new ConexionSqlServer();
     categoriaDAO = new CategoriaDAOSqlServer(gestorODBC);
 }
コード例 #4
0
 public GestionarLineaSubCategoriaServicio()
 {
     gestoriODBC          = new ConexionSqlServer();
     lineaSubCategoriaDAO = new LineaSubCategoriaDAOSqlServer(gestoriODBC);
 }
コード例 #5
0
 public UsuarioDAOSqlServer(GestorODBC gestorODBC)
 {
     this.gestorODBC = gestorODBC;
 }
コード例 #6
0
 public ProductoImagenDAOSqlServer(GestorODBC gestorODBC)
 {
     this.gestorODBC = gestorODBC;
 }
コード例 #7
0
 public GestionarProductoImagenServicio()
 {
     gestorODBC        = new ConexionSqlServer();
     productoImagenDAO = new ProductoImagenDAOSqlServer(gestorODBC);
 }
コード例 #8
0
 public GestionarUsuarioServicio()
 {
     gestorODBC   = new ConexionSqlServer();
     ususuarioDAO = new UsuarioDAOSqlServer(gestorODBC);
 }
コード例 #9
0
 public ContactoDAOSqlServer(GestorODBC gestorODBC)
 {
     this.gestorODBC = gestorODBC;
 }
コード例 #10
0
 public GestionarContactoServicio()
 {
     gestorODBC  = new ConexionSqlServer();
     contactoDAO = new ContactoDAOSqlServer(gestorODBC);
 }