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