Exemple #1
0
        public CountryRegionCurrencyCollection FetchByQuery(Query qry)
        {
            CountryRegionCurrencyCollection coll = new CountryRegionCurrencyCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public CountryRegionCurrencyCollection FetchAll()
        {
            CountryRegionCurrencyCollection coll = new CountryRegionCurrencyCollection();
            Query qry = new Query(CountryRegionCurrency.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public CountryRegionCurrencyCollection FetchByID(object CountryRegionCode)
        {
            CountryRegionCurrencyCollection coll = new CountryRegionCurrencyCollection().Where("CountryRegionCode", CountryRegionCode).Load();

            return(coll);
        }