public RisCentrosDeInvestigacionCollection FetchByQuery(Query qry)
        {
            RisCentrosDeInvestigacionCollection coll = new RisCentrosDeInvestigacionCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public RisCentrosDeInvestigacionCollection FetchAll()
        {
            RisCentrosDeInvestigacionCollection coll = new RisCentrosDeInvestigacionCollection();
            Query qry = new Query(RisCentrosDeInvestigacion.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public RisCentrosDeInvestigacionCollection FetchByID(object IdCentroDeInvestigacion)
        {
            RisCentrosDeInvestigacionCollection coll = new RisCentrosDeInvestigacionCollection().Where("idCentroDeInvestigacion", IdCentroDeInvestigacion).Load();

            return(coll);
        }