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