示例#1
0
        public EmrRelTraumaPrehospitalariumCollection FetchByQuery(Query qry)
        {
            EmrRelTraumaPrehospitalariumCollection coll = new EmrRelTraumaPrehospitalariumCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public EmrRelTraumaPrehospitalariumCollection FetchAll()
        {
            EmrRelTraumaPrehospitalariumCollection coll = new EmrRelTraumaPrehospitalariumCollection();
            Query qry = new Query(EmrRelTraumaPrehospitalarium.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public EmrRelTraumaPrehospitalariumCollection FetchByID(object IdRelTraumaPrehospitalaria)
        {
            EmrRelTraumaPrehospitalariumCollection coll = new EmrRelTraumaPrehospitalariumCollection().Where("idRelTraumaPrehospitalaria", IdRelTraumaPrehospitalaria).Load();

            return(coll);
        }