public void Delete(CapaEntidad.Estructura.Institucion pDatos)
 {
     CapaDatos.Institucion vNegocio = new CapaDatos.Institucion();
     try
     {
         vNegocio.Delete(pDatos);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message, ex);
     }
 }
        public DataTable Select()
        {
            DataTable dtResultado = new DataTable();

            CapaDatos.Institucion vNegocio = new CapaDatos.Institucion();
            try
            {
                dtResultado = vNegocio.Select();
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message, ex);
            }

            return(dtResultado);
        }
        public DataTable LeerInstitucion(int pIdCliente)
        {
            DataTable dtResultado = new DataTable();

            CapaDatos.Institucion vNegocio = new CapaDatos.Institucion();
            try
            {
                dtResultado = vNegocio.LeerInstitucion(pIdCliente);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message, ex);
            }

            return(dtResultado);
        }