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

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

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

            return(coll);
        }