Exemple #1
0
        public AprMomentoNacimientoCollection FetchByQuery(Query qry)
        {
            AprMomentoNacimientoCollection coll = new AprMomentoNacimientoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public AprMomentoNacimientoCollection FetchAll()
        {
            AprMomentoNacimientoCollection coll = new AprMomentoNacimientoCollection();
            Query qry = new Query(AprMomentoNacimiento.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }