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