protected void InitQuery(vShippingServiceRatesQuery query)
        {
            query.OnLoadDelegate = this.OnQueryLoaded;

            if (!query.es2.HasConnection)
            {
                query.es2.Connection = ((IEntityCollection)this).Connection;
            }
        }
 public bool Load(vShippingServiceRatesQuery query)
 {
     this.query = query;
     InitQuery(this.query);
     return(Query.Load());
 }