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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public AprTallaEdadCollection FetchAll()
        {
            AprTallaEdadCollection coll = new AprTallaEdadCollection();
            Query qry = new Query(AprTallaEdad.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public AprTallaEdadCollection FetchByID(object IdTallaEdad)
        {
            AprTallaEdadCollection coll = new AprTallaEdadCollection().Where("idTallaEdad", IdTallaEdad).Load();

            return(coll);
        }