Пример #1
0
        public LabItemScreeningResultadoCollection FetchByQuery(Query qry)
        {
            LabItemScreeningResultadoCollection coll = new LabItemScreeningResultadoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #2
0
        public LabItemScreeningResultadoCollection FetchAll()
        {
            LabItemScreeningResultadoCollection coll = new LabItemScreeningResultadoCollection();
            Query qry = new Query(LabItemScreeningResultado.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #3
0
        public LabItemScreeningResultadoCollection FetchByID(object IdResultado)
        {
            LabItemScreeningResultadoCollection coll = new LabItemScreeningResultadoCollection().Where("idResultado", IdResultado).Load();

            return(coll);
        }