public RemInternacionCollection FetchByQuery(Query qry) { RemInternacionCollection coll = new RemInternacionCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public RemInternacionCollection FetchAll() { RemInternacionCollection coll = new RemInternacionCollection(); Query qry = new Query(RemInternacion.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }