Beispiel #1
0
        public AprPercentilesPesoEstaturaCollection FetchByQuery(Query qry)
        {
            AprPercentilesPesoEstaturaCollection coll = new AprPercentilesPesoEstaturaCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public AprPercentilesPesoEstaturaCollection FetchAll()
        {
            AprPercentilesPesoEstaturaCollection coll = new AprPercentilesPesoEstaturaCollection();
            Query qry = new Query(AprPercentilesPesoEstatura.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #3
0
        public AprPercentilesPesoEstaturaCollection FetchByID(object Id)
        {
            AprPercentilesPesoEstaturaCollection coll = new AprPercentilesPesoEstaturaCollection().Where("id", Id).Load();

            return(coll);
        }