public VerificationMethodCollection FetchAll()
 {
     VerificationMethodCollection coll = new VerificationMethodCollection();
     Query qry = new Query(VerificationMethod.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public VerificationMethodCollection FetchByQuery(Query qry)
 {
     VerificationMethodCollection coll = new VerificationMethodCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public VerificationMethodCollection FetchByID(object VerificationMethodKey)
 {
     VerificationMethodCollection coll = new VerificationMethodCollection().Where("verification_method_key", VerificationMethodKey).Load();
     return coll;
 }