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); }
public PnLocalidadeCollection FetchByID(object IdLocalidad) { PnLocalidadeCollection coll = new PnLocalidadeCollection().Where("id_localidad", IdLocalidad).Load(); return(coll); }