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