Exemplo n.º 1
0
 public StudyHistoryCollection FetchAll()
 {
     var coll = new StudyHistoryCollection();
     var qry = new Query(StudyHistory.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 2
0
 public StudyHistoryCollection FetchByQuery(Query qry)
 {
     var coll = new StudyHistoryCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 3
0
 public StudyHistoryCollection FetchByID(object Guid)
 {
     StudyHistoryCollection coll = new StudyHistoryCollection().Where("GUID", Guid).Load();
     return coll;
 }