public ShippingEstimateCollection FetchByQuery(Query qry)
        {
            ShippingEstimateCollection coll = new ShippingEstimateCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public ShippingEstimateCollection FetchAll()
        {
            ShippingEstimateCollection coll = new ShippingEstimateCollection();
            Query qry = new Query(ShippingEstimate.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }