public InfoVerificationMethodCollection FetchAll()
 {
     InfoVerificationMethodCollection coll = new InfoVerificationMethodCollection();
     Query qry = new Query(InfoVerificationMethod.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public InfoVerificationMethodCollection FetchByQuery(Query qry)
 {
     InfoVerificationMethodCollection coll = new InfoVerificationMethodCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public InfoVerificationMethodCollection FetchByID(object InfoVerificationMethodsKey)
 {
     InfoVerificationMethodCollection coll = new InfoVerificationMethodCollection().Where("info_verification_methods_key", InfoVerificationMethodsKey).Load();
     return coll;
 }