Пример #1
0
        public AprZScorePesoEdadCollection FetchByQuery(Query qry)
        {
            AprZScorePesoEdadCollection coll = new AprZScorePesoEdadCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #2
0
        public AprZScorePesoEdadCollection FetchAll()
        {
            AprZScorePesoEdadCollection coll = new AprZScorePesoEdadCollection();
            Query qry = new Query(AprZScorePesoEdad.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #3
0
        public AprZScorePesoEdadCollection FetchByID(object Id)
        {
            AprZScorePesoEdadCollection coll = new AprZScorePesoEdadCollection().Where("id", Id).Load();

            return(coll);
        }