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

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

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