예제 #1
0
 private void LlenarComboIdentificacion()
 {
     try
     {
         TipoIdentificacion Datos = new TipoIdentificacion {
             Conexion = Comun.Conexion, IncluirSelect = true
         };
         Catalogo_Negocio CN = new Catalogo_Negocio();
         this.cmbDocumento.DataSource    = CN.ObtenerComboTipoIdentificacion(Datos);
         this.cmbDocumento.DisplayMember = "Descripcion";
         this.cmbDocumento.ValueMember   = "IDTipoIdentificacion";
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }