/// <summary>
        /// LEER GRUPO
        /// </summary>
        private void LEER_CLUSTER()
        {
            try
            {
                //===========================================================
                // DECLARACION DE VARIABLES
                //===========================================================
                SMetodos Negocio = new SMetodos();
                List <oSP_READ_CLUSTER> ListaCluster = new List <oSP_READ_CLUSTER>();



                //===========================================================
                // LLAMADA DEL SERVICIO                                    ==
                //===========================================================
                ListaCluster = Negocio.SP_READ_CLUSTER();


                if (ListaCluster == null)
                {
                    DibujarGrillaCluster();
                    return;
                }
                if (ListaCluster.Count <= 0)
                {
                    DibujarGrillaCluster();
                    return;
                }

                FuncionesGenerales.Cargar_Grilla(ListaCluster, GRDCluster);
                V_Global().ListaCluster = ListaCluster;
            }
            catch
            {
                throw;
            }
        }