Esempio n. 1
0
        public RisEstudioInvestigadorCollection FetchByQuery(Query qry)
        {
            RisEstudioInvestigadorCollection coll = new RisEstudioInvestigadorCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 2
0
        public RisEstudioInvestigadorCollection FetchAll()
        {
            RisEstudioInvestigadorCollection coll = new RisEstudioInvestigadorCollection();
            Query qry = new Query(RisEstudioInvestigador.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 3
0
        public RisEstudioInvestigadorCollection FetchByID(object IdEstudioInvestigador)
        {
            RisEstudioInvestigadorCollection coll = new RisEstudioInvestigadorCollection().Where("idEstudioInvestigador", IdEstudioInvestigador).Load();

            return(coll);
        }