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

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

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