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

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

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