예제 #1
0
        public LabItemScreeningCollection FetchByQuery(Query qry)
        {
            LabItemScreeningCollection coll = new LabItemScreeningCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public LabItemScreeningCollection FetchAll()
        {
            LabItemScreeningCollection coll = new LabItemScreeningCollection();
            Query qry = new Query(LabItemScreening.Schema);

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