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