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