public SysBarrioCollection FetchAll() { SysBarrioCollection coll = new SysBarrioCollection(); Query qry = new Query(SysBarrio.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public SysBarrioCollection FetchByID(object IdBarrio) { SysBarrioCollection coll = new SysBarrioCollection().Where("idBarrio", IdBarrio).Load(); return(coll); }