コード例 #1
0
ファイル: PatientController.cs プロジェクト: khaha2210/radio
 public PatientCollection FetchAll()
 {
     var coll = new PatientCollection();
     var qry = new Query(Patient.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
ファイル: PatientController.cs プロジェクト: khaha2210/radio
 public PatientCollection FetchByQuery(Query qry)
 {
     var coll = new PatientCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }