Ejemplo n.º 1
0
        public LabDetalleSolicitudScreeningCollection FetchByQuery(Query qry)
        {
            LabDetalleSolicitudScreeningCollection coll = new LabDetalleSolicitudScreeningCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public LabDetalleSolicitudScreeningCollection FetchAll()
        {
            LabDetalleSolicitudScreeningCollection coll = new LabDetalleSolicitudScreeningCollection();
            Query qry = new Query(LabDetalleSolicitudScreening.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }