/// <summary>
        /// LEER PAIS
        /// </summary>
        private void LEER_PAIS()
        {
            try
            {
                //===========================================================
                // DECLARACION DE VARIABLES
                //===========================================================
                SMetodos             Negocio   = new SMetodos();
                List <oSP_READ_PAIS> ListaPais = new List <oSP_READ_PAIS>();


                //===========================================================
                // LLAMADA DEL SERVICIO                                    ==
                //===========================================================
                ListaPais = Negocio.SP_READ_PAIS();


                if (ListaPais == null)
                {
                    FuncionesGenerales.CDDLCombos(null, DDL_PAIS);
                    return;
                }
                if (ListaPais.Count <= 0)
                {
                    FuncionesGenerales.CDDLCombos(null, DDL_PAIS);
                    return;
                }

                List <Item_Seleccion> Lista = new List <Item_Seleccion>();
                Lista = ListaPais.OrderBy(p => p.ID_PAIS).Select(p => new Item_Seleccion {
                    Id = p.ID_PAIS, Nombre = p.DESCRIPCION
                }).ToList();


                FuncionesGenerales.CDDLCombos(Lista, DDL_PAIS);
            }
            catch
            {
                throw;
            }
        }