Example #1
0
        public EmrGlasgowOcularCollection FetchByQuery(Query qry)
        {
            EmrGlasgowOcularCollection coll = new EmrGlasgowOcularCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #2
0
        public EmrGlasgowOcularCollection FetchAll()
        {
            EmrGlasgowOcularCollection coll = new EmrGlasgowOcularCollection();
            Query qry = new Query(EmrGlasgowOcular.Schema);

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