public static FrmGESTIONARMEDICOS obtener_instancia(MODELO.USUARIO oUSUARIO)
        {
            if (Instancia == null)
            {
                Instancia = new FrmGESTIONARMEDICOS(oUSUARIO);
            }
            if (Instancia.IsDisposed)
            {
                Instancia = new FrmGESTIONARMEDICOS(oUSUARIO);
            }

            return(Instancia);
        }
        public static FrmGESTIONARMEDICOS Obtener_Instancia()
        {
            if (Instancia == null)
            {
                Instancia = new FrmGESTIONARMEDICOS();
            }
            if (Instancia.IsDisposed)
            {
                Instancia = new FrmGESTIONARMEDICOS();
            }

            return(Instancia);
        }