コード例 #1
0
        public LabResultadoDetalleCollection FetchByQuery(Query qry)
        {
            LabResultadoDetalleCollection coll = new LabResultadoDetalleCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public LabResultadoDetalleCollection FetchAll()
        {
            LabResultadoDetalleCollection coll = new LabResultadoDetalleCollection();
            Query qry = new Query(LabResultadoDetalle.Schema);

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