public InfoCountryCodeListCollection FetchAll()
 {
     InfoCountryCodeListCollection coll = new InfoCountryCodeListCollection();
     Query qry = new Query(InfoCountryCodeList.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public InfoCountryCodeListCollection FetchByQuery(Query qry)
 {
     InfoCountryCodeListCollection coll = new InfoCountryCodeListCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public InfoCountryCodeListCollection FetchByID(object InfoCountryKey)
 {
     InfoCountryCodeListCollection coll = new InfoCountryCodeListCollection().Where("info_country_key", InfoCountryKey).Load();
     return coll;
 }