Exemplo n.º 1
0
        private void CargarDatos()
        {
            var empresa = _empresaServicio.Obtener();

            txtNumero.Text         = empresa.Numero.ToString();
            txtTelefono.Text       = empresa.Telefono;
            txtRazonSocial.Text    = empresa.RazonSocial;
            txtEmail.Text          = empresa.Mail;
            txtSucursal.Text       = empresa.Sucursal;
            txtCuit.Text           = empresa.Cuit;
            imgLogo.Image          = ImagenDb.Convertir_Bytes_Imagen(empresa.Logo);
            txtNombreFantasia.Text = empresa.NombreFantasia;
            txtBarrio.Text         = empresa.Barrio;
            txtCalle.Text          = empresa.Calle;
            txtCasa.Text           = empresa.Casa;
            txtDepartamento.Text   = empresa.Dpto;
            txtLote.Text           = empresa.Lote;
            txtManzana.Text        = empresa.Mza;
            txtPiso.Text           = empresa.Piso;

            CargarComboBox(cmbProvincia, _provinciaServicio.Obtener(string.Empty), "Descripcion", "Id");
            cmbProvincia.SelectedItem = empresa.ProvinciaId;
            if (cmbProvincia.Items.Count > 0)
            {
                CargarComboBox(cmbLocalidad, _localidadServicio.ObtenerPorProvincia(empresa.ProvinciaId, string.Empty), "Descripcion", "Id");
            }
            cmbLocalidad.SelectedItem = empresa.LocalidadId;
            CargarComboBox(cmdCondicionIva, _condicionIvaServicio.Obtener(string.Empty), "Descripcion", "Id");
            cmdCondicionIva.SelectedItem = empresa.CondicionIvaId;
        }
Exemplo n.º 2
0
        public override void CargarDatos(long?entidadId)
        {
            if (!entidadId.HasValue)
            {
                MessageBox.Show(@"Ocurrio un Error Grave", @"Error Grave", MessageBoxButtons.OK, MessageBoxIcon.Stop);

                this.Close();
            }

            if (TipoOperacion == TipoOperacion.Eliminar)
            {
                btnLimpiar.Enabled = false;
            }

            var dto = _Servicio.ObtenerPorId(entidadId.Value);

            // Datos Personales
            txtDescripcion.Text = dto.Descripcion;
            txtExtras.Text      = dto.Extras;

            nudPrecio.Value = dto.Precio;
            nudStock.Value  = dto.Stock;

            cmbColegio.SelectedValue = dto.ColegioId;
            cmbTipo.SelectedValue    = dto.TipoProductoId;

            ckbFabricacion.Checked = dto.Creacion;

            imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(dto.Foto);

            if (dto.Creacion)
            {
                ckbFabricacion.Enabled = false;
            }
        }
Exemplo n.º 3
0
        public override void CargarDatos(long?entidadId)
        {
            if (!entidadId.HasValue)
            {
                MessageBox.Show(@"Ocurrio un Error Grave", @"Error Grave", MessageBoxButtons.OK, MessageBoxIcon.Stop);

                this.Close();
            }

            if (TipoOperacion == TipoOperacion.Eliminar)
            {
                btnLimpiar.Enabled = false;
            }

            var localidad = _Servicio.ObtenerPorId(entidadId.Value);

            // Datos Personales
            txtApellido.Text      = localidad.Apellido;
            txtNombre.Text        = localidad.Nombre;
            txtDni.Text           = localidad.Dni;
            txtDireccion.Text     = localidad.Direccion;
            txtTelefono.Text      = localidad.Telefono;
            imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(localidad.Foto);
            ckbPrincipal.Checked  = localidad.Principal;
        }
Exemplo n.º 4
0
        public override void CargarDatos(long?entidadId)
        {
            if (!entidadId.HasValue)
            {
                MessageBox.Show(@"Ocurrio un Error Grave", @"Error Grave", MessageBoxButtons.OK, MessageBoxIcon.Stop);

                this.Close();
            }

            if (TipoOperacion == TipoOperacion.Eliminar)
            {
                btnLimpiar.Enabled = false;
            }

            var negocio = negocioServicio.ObtenerPorId(entidadId.Value);

            // Datos Personales
            txtRazonSocial.Text = negocio.RazonSocial;
            txtCuit.Text        = negocio.Cuit;
            txtCelular.Text     = negocio.Celular;
            txtEmail.Text       = negocio.Email;
            txtDireccion.Text   = negocio.Direccion;

            imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(negocio.Imagen);
        }
Exemplo n.º 5
0
        public void Datos()
        {
            var producto = productoServicio.ObtenerPorId(_ProductoId);

            lblDescripcion.Text = producto.Descripcion;
            lblPrecio.Text      = $"${producto.Precio}";
            lblExtra.Text       = producto.Extras;
            ptbImagen.Image     = ImagenDb.Convertir_Bytes_Imagen(producto.Foto);
        }
Exemplo n.º 6
0
 private void VerDatos()
 {
     txtRazonSocial.Text = NegocioLogeado.RazonSocial;
     txtCuit.Text        = NegocioLogeado.Cuit;
     txtCelular.Text     = NegocioLogeado.Celular;
     txtDireccion.Text   = NegocioLogeado.Direccion;
     txtEmail.Text       = NegocioLogeado.Email;
     pictureImagen.Image = ImagenDb.Convertir_Bytes_Imagen(NegocioLogeado.Imagen);
 }
Exemplo n.º 7
0
 public Principal()
 {
     _empleadoServicio = new EmpleadoServicio();
     InitializeComponent();
     if (Entidad.UsuarioId != 0)
     {
         controlPresentacion1.lblUsuario.Text  = Entidad.NombreUsuario;
         controlPresentacion1.pbEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(_empleadoServicio.ObtenerPorUsuarioId(Entidad.UsuarioId).Foto);
     }
 }
Exemplo n.º 8
0
        public override void CargarDatos(long?entidadId)
        {
            if (!entidadId.HasValue)
            {
                MessageBox.Show(@"Ocurrio un Error Grave", @"Error Grave", MessageBoxButtons.OK, MessageBoxIcon.Stop);

                this.Close();
            }

            if (TipoOperacion == TipoOp.Eliminar)
            {
                btnLimpiar.Enabled = false;
            }


            var articuloCargar = _articuloServicio.ObtenerPorId(entidadId);

            nudLimiteVenta.Enabled = false;
            txtAbreviatura.Text    = articuloCargar.Abreviatura;
            txtCodigo.Text         = articuloCargar.Codigo;
            txtCodigoBarra.Text    = articuloCargar.CodigoBarra;
            if (articuloCargar.PermiteStockNegativo)
            {
                nudStock.Minimum = -100;
            }
            else
            {
                nudStock.Minimum = 0;
            }
            nudStock.Value           = articuloCargar.Stock;
            txtDescripcion.Text      = articuloCargar.Descripcion;
            nudStockMax.Value        = articuloCargar.StockMaximo;
            nudStock.Maximum         = nudStockMax.Value;
            nudStockMin.Value        = articuloCargar.StockMinimo;
            cbDescuentoStock.Checked = articuloCargar.DescuentaStock;

            cbPermiteStockNegativo.Checked = articuloCargar.PermiteStockNegativo;

            cbDiscontinuado.Checked = articuloCargar.EstaDiscontinuado;
            cbLimiteVenta.Checked   = articuloCargar.ActivarLimiteVenta;
            if (cbLimiteVenta.Checked)
            {
                nudLimiteVenta.Value   = articuloCargar.LimiteVenta;
                nudLimiteVenta.Enabled = true;
            }
            else
            {
                nudLimiteVenta.Value = 0;
            }
            imgArticulo.Image = ImagenDb.Convertir_Bytes_Imagen(articuloCargar.Foto);
            CargarComboBox(cmbMarca, _marcaServicio.Obtener(string.Empty), "Descripcion", "Id");
            CargarComboBox(cmbRubro, _rubroServicio.Obtener(string.Empty), "Descripcion", "Id");
        }
Exemplo n.º 9
0
        public void DatosComercio()
        {
            var comercio = negocioServicio.ObtenerPorId(1);

            NegocioLogeado.Id          = comercio.Id;
            NegocioLogeado.RazonSocial = comercio.RazonSocial;
            NegocioLogeado.Email       = comercio.Email;
            NegocioLogeado.Cuit        = comercio.Cuit;
            NegocioLogeado.Direccion   = comercio.Direccion;
            NegocioLogeado.Celular     = comercio.Celular;
            NegocioLogeado.Imagen      = comercio.Imagen;

            imagePrincipal.Image = ImagenDb.Convertir_Bytes_Imagen(comercio.Imagen);

            lblRazonSocial.Text = NegocioLogeado.RazonSocial;
        }
Exemplo n.º 10
0
        public override void CargarDatos(long?entidadId)
        {
            if (!entidadId.HasValue)
            {
                MessageBox.Show(@"Ocurrio un Error Grave", @"Error Grave", MessageBoxButtons.OK, MessageBoxIcon.Stop);

                this.Close();
            }

            if (TipoOperacion == TipoOperacion.Eliminar)
            {
                btnLimpiar.Enabled = false;
            }

            var empresa = _empresaServicio.ObtenerPorId(entidadId.Value);

            // Datos Personales

            txtRazonSocial.Text    = empresa.RazonSocial;
            txtNombreFantacia.Text = empresa.NombreFantasia;
            txtTelefono.Text       = empresa.Telefono;
            txtSucursal.Text       = empresa.Sucursal;
            txtCuit.Text           = empresa.Cuit;
            txtMail.Text           = empresa.Email;
            imgFotoEmpresa.Image   = ImagenDb.Convertir_Bytes_Imagen(empresa.Logo);

            // Datos Direccion
            txtCalle.Text        = empresa.Calle;
            txtNumero.Text       = empresa.Numero.ToString();
            txtPiso.Text         = empresa.Piso;
            txtDepartamento.Text = empresa.Dpto;
            txtBarrio.Text       = empresa.Barrio;

            CargarComboBox(cmbProvincia, _provinciaServicio.Obtener(string.Empty), "Descripcion", "Id");

            cmbProvincia.SelectedItem = empresa.ProvinciaId;

            if (cmbProvincia.Items.Count > 0)
            {
                CargarComboBox(cmbLocalidad, _localidadServicio.ObtenerPorProvincia(empresa.ProvinciaId, string.Empty), "Descripcion", "Id");
            }

            CargarComboBox(cmbIVA, _ivaServicios.Obtener(string.Empty), "Descripcion", "Id");

            cmbIVA.SelectedItem = empresa.CondicionIvaId;
        }
        private void Actualizar()
        {
            var empresa = _empresaServicio.Obtener();

            lblContenidoTelefono.Text    = empresa.Telefono;
            lblContenidoCuit.Text        = empresa.Cuit;
            lblContenidoRazonSocial.Text = empresa.RazonSocial;
            lblContenidoEmail.Text       = empresa.Mail;
            lblContenidoSucursal.Text    = empresa.Sucursal;
            imgLogo.Image = ImagenDb.Convertir_Bytes_Imagen(empresa.Logo);
            lblContenidoNombreFantasia.Text = empresa.NombreFantasia;
            lblContenidoCondicionIva.Text   = _condicionIvaServicio.ObtenerPorId(empresa.CondicionIvaId).Descripcion;
            lblContenidoLocalidad.Text      = _localidadServicio.ObtenerPorId(empresa.LocalidadId).Descripcion;
            lblContenidoProvincia.Text      = _provinciaServicio.ObtenerPorId(empresa.ProvinciaId).Descripcion;
            lblContenidoBarrio.Text         = empresa.Barrio;
            lblContenidoDireccion.Text      = $"{empresa.Calle} {empresa.Numero}";
        }
Exemplo n.º 12
0
        public override void CargarDatos(long?entidadId)
        {
            if (!entidadId.HasValue)
            {
                MessageBox.Show(@"Ocurrio un Error Grave", @"Error Grave", MessageBoxButtons.OK, MessageBoxIcon.Stop);

                this.Close();
            }

            if (TipoOperacion == TipoOperacion.Eliminar)
            {
                btnLimpiar.Enabled = false;
            }

            var articulo = _articuloServicio.ObtenerPorId(entidadId.Value);

            if (articulo != null)
            {
                txtBoxCodigo.Text               = articulo.Codigo;
                txtBoxCodigoBarra.Text          = articulo.CodigoBarra;
                txtBoxDescripcion.Text          = articulo.Descripcion;
                txtBoxDetalle.Text              = articulo.Detalle;
                txtBoxAbreviatura.Text          = articulo.Abreviatura;
                cbxActivarLimiteVenta.Checked   = articulo.ActivarLimiteVenta;
                cbxDescuentaStock.Checked       = articulo.DescuentaStock;
                nudLimiteVenta.Value            = articulo.LimiteVenta;
                cbxPermiteStockNegativo.Checked = articulo.PermiteStockNegativo;
                imgFotoArticulo.Image           = ImagenDb.Convertir_Bytes_Imagen(articulo.Foto);

                CargarComboBox(cmbMarca, _marcaServicio.ObtenerMarca(string.Empty), "Descripcion", "Id");
                cmbMarca.SelectedItem = articulo.MarcaId;
                CargarComboBox(cmbRubro, _rubroServicio.ObtenerRubro(string.Empty), "Descripcion", "Id");
                cmbRubro.SelectedItem = articulo.RubroId;

                nudStockMax.Value = articulo.StockMaximo;
                nudStock.Value    = articulo.Stock;
                nudStockMin.Value = articulo.StockMinimo;
            }
            else
            {
                MessageBox.Show(@"Ocurrio un Error Grave", @"Error Grave", MessageBoxButtons.OK, MessageBoxIcon.Stop);
            }
        }
Exemplo n.º 13
0
 private void MostrarImagenes()
 {
     imgCaja.Image              = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Caja);
     imgClientes.Image          = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Clientes);
     imgCobro.Image             = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Cobrar);
     imgCtaCte.Image            = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_CtaCte);
     imgFabricar.Image          = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Fabricar);
     imgGuardado.Image          = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Pedido_Guardado);
     imgParaHacer.Image         = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Para_Hacer);
     imgPendientes.Image        = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Pedidos_Pendientes);
     imgPrincipal.Image         = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Logo_Principal);
     imgProductos.Image         = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Productos);
     imgVentaPedido.Image       = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Pedido_Venta);
     imgInfo.Image              = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Info);
     imgEntregados.Image        = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Pedido_Entregado);
     imgArreglos.Image          = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Arreglos);
     imgTerminados.Image        = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Pedidos_Terminados);
     imgEsperandoClientes.Image = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Esperando);
     imgListos.Image            = ImagenDb.Convertir_Bytes_Imagen(_ImageDto.Image_Pedidos_Listos);
 }
Exemplo n.º 14
0
        public void Datos(ClienteDto cliente)
        {
            lblApellido.Text = cliente.Apellido;
            lblNombre.Text   = cliente.Nombre;
            lblDni.Text      = $"Dni: { cliente.Dni}";

            nudId.Value = cliente.Id;

            ckbPrincipal.Checked = cliente.Principal;

            if (ckbPrincipal.Checked == false)
            {
                ckbPrincipal.Visible = false;
            }

            if (cliente.Foto != null)
            {
                pictureBox1.Image = ImagenDb.Convertir_Bytes_Imagen(cliente.Foto);
            }
        }
Exemplo n.º 15
0
 private void CargarImageEnGeneral()
 {
     imageLogo.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Logo_Principal);
 }
Exemplo n.º 16
0
 private void CargarImageEnGeneral()
 {
     imgEsperando.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Esperando);
 }
Exemplo n.º 17
0
 private void CargarImageEnGeneral()
 {
     imgCobro.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Cobrar);
 }
        public override void CargarDatos(long?entidadId)
        {
            if (!entidadId.HasValue)
            {
                MessageBox.Show(@"Ocurrio un Error Grave",
                                @"Error Grave",
                                MessageBoxButtons.OK,
                                MessageBoxIcon.Stop);

                this.Close();
            }

            if (TipoOperacion == TipoOperacion.Eliminar)
            {
                btnLimpiar.Enabled = false;
            }

            var articulo = _articuloServicio.ObtenerPorId(entidadId.Value);

            txtCodigo.Text        = articulo.Codigo;
            txtCodigoBarra.Text   = articulo.CodigoBarra;
            txtDescripcion.Text   = articulo.Descripcion;
            txtDetalle.Text       = articulo.Detalle;
            txtAbreviatura.Text   = articulo.Abreviatura;
            imgFotoArticulo.Image = ImagenDb.Convertir_Bytes_Imagen(articulo.Foto);

            if (articulo.ActivarLimiteVenta == true)
            {
                checkBoxLimiteVenta.CheckState = CheckState.Checked;
            }
            else
            {
                checkBoxLimiteVenta.CheckState = CheckState.Unchecked;
            }
            nudLimiteVenta.Value = articulo.LimiteVenta;
            if (articulo.PermiteStockNegativo == true)
            {
                checkBoxStockNegativo.CheckState = CheckState.Checked;
            }
            else
            {
                checkBoxStockNegativo.CheckState = CheckState.Unchecked;
            }
            if (articulo.EstaDiscontinuado == true)
            {
                checkBoxDiscontinuado.CheckState = CheckState.Checked;
            }
            else
            {
                checkBoxDiscontinuado.CheckState = CheckState.Unchecked;
            }

            nudStockMax.Value = articulo.StockMaximo;
            nudStockMin.Value = articulo.StockMinimo;
            if (articulo.DescuentaStockl == true)
            {
                checkBoxDescuentaStock.CheckState = CheckState.Checked;
            }
            else
            {
                checkBoxDescuentaStock.CheckState = CheckState.Unchecked;
            }

            CargarComboBox(cmbMarca, _marcaServicio.Obtener(string.Empty), "Descripcion", "Id");
            CargarComboBox(cmbRubro, _rubroSerivicio.Obtener(string.Empty), "Descripcion", "Id");
        }
Exemplo n.º 19
0
 private void CargarImageEnGeneral()
 {
     imgClientes.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Clientes);
 }
Exemplo n.º 20
0
 private void CargarImageEnGeneral()
 {
     imgProductos.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Productos);
 }
Exemplo n.º 21
0
 private void CargarImageEnGeneral()
 {
     imgTerminado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Pedidos_Terminados);
 }
Exemplo n.º 22
0
 private void CargarImageEnGeneral()
 {
     ptbImagen.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Pedido_Entregado);
 }
Exemplo n.º 23
0
        public void ImageDescripcion(string descripcion)
        {
            switch (descripcion)
            {
            case "Image_Logo_Principal":
                lblImage.Text         = "Image_Logo_Principal";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Logo_Principal);
                break;

            case "Image_Caja":
                lblImage.Text         = "Image_Caja";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Caja);
                break;

            case "Image_CtaCte":
                lblImage.Text         = "Image_CtaCte";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_CtaCte);
                break;

            case "Image_Productos":
                lblImage.Text         = "Image_Productos";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Productos);
                break;

            case "Image_Clientes":
                lblImage.Text         = "Image_Clientes";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Clientes);
                break;

            case "Image_Pedido_Guardado":
                lblImage.Text         = "Image_Pedido_Guardado";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Pedido_Guardado);
                break;

            case "Image_Para_Hacer":
                lblImage.Text         = "Image_Para_Hacer";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Para_Hacer);
                break;

            case "Image_Pedidos_Pendientes":
                lblImage.Text         = "Image_Pedidos_Pendientes";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Pedidos_Pendientes);
                break;

            case "Image_Cobrar":
                lblImage.Text         = "Image_Cobrar";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Cobrar);
                break;

            case "Image_Pedido_Venta":
                lblImage.Text         = "Image_Pedido_Venta";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Pedido_Venta);
                break;

            case "Image_Info":
                lblImage.Text         = "Image_Info";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Info);
                break;

            case "Image_Pedidos_Listos":
                lblImage.Text         = "Image_Pedidos_Listos";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Pedidos_Listos);
                break;

            case "Image_Esperando":
                lblImage.Text         = "Image_Esperando";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Esperando);
                break;

            case "Image_Pedidos_Terminados":
                lblImage.Text         = "Image_Pedidos_Terminados";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Pedidos_Terminados);
                break;

            case "Image_Fabricar":
                lblImage.Text         = "Image_Fabricar";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Fabricar);
                break;

            case "Image_Arreglos":
                lblImage.Text         = "Image_Arreglos";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Arreglos);
                break;

            case "Image_Pedido_Entregado":
                lblImage.Text         = "Image_Pedido_Entregado";
                imgFotoEmpleado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Pedido_Entregado);
                break;

            default:
                break;
            }
        }
Exemplo n.º 24
0
 private void CargarImageEnGeneral()
 {
     imgGuardado.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Pedido_Guardado);
 }
Exemplo n.º 25
0
 private void CargarImageEnGeneral()
 {
     imgArreglo.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Arreglos);
 }
Exemplo n.º 26
0
 private void CargarImageEnGeneral()
 {
     imgFabricar.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Fabricar);
 }
Exemplo n.º 27
0
 private void CargarImageEnGeneral()
 {
     imgCtaCte.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_CtaCte);
 }
Exemplo n.º 28
0
 private void CargarImageEnGeneral()
 {
     imgLogo.Image = ImagenDb.Convertir_Bytes_Imagen(ImageLogueado.Image_Info);
 }