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