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