Ejemplo n.º 1
0
        public AprZScoreIMCEdadCollection FetchByQuery(Query qry)
        {
            AprZScoreIMCEdadCollection coll = new AprZScoreIMCEdadCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public AprZScoreIMCEdadCollection FetchAll()
        {
            AprZScoreIMCEdadCollection coll = new AprZScoreIMCEdadCollection();
            Query qry = new Query(AprZScoreIMCEdad.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public AprZScoreIMCEdadCollection FetchByID(object Id)
        {
            AprZScoreIMCEdadCollection coll = new AprZScoreIMCEdadCollection().Where("id", Id).Load();

            return(coll);
        }