Пример #1
0
 public VerificationMethodCollection FetchAll()
 {
     VerificationMethodCollection coll = new VerificationMethodCollection();
     Query qry = new Query(VerificationMethod.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Пример #2
0
 public VerificationMethodCollection FetchByQuery(Query qry)
 {
     VerificationMethodCollection coll = new VerificationMethodCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }