コード例 #1
0
 public LPatientInfoCollection FetchAll()
 {
     LPatientInfoCollection coll = new LPatientInfoCollection();
     Query qry = new Query(LPatientInfo.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public LPatientInfoCollection FetchByQuery(Query qry)
 {
     LPatientInfoCollection coll = new LPatientInfoCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
 public LPatientInfoCollection FetchByID(object PatientId)
 {
     LPatientInfoCollection coll = new LPatientInfoCollection().Where("Patient_ID", PatientId).Load();
     return coll;
 }