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);
        }
        public B3LookupConsigneeIDCollection FetchByID(object B3CustomerID)
        {
            B3LookupConsigneeIDCollection coll = new B3LookupConsigneeIDCollection().Where("B3CustomerID", B3CustomerID).Load();

            return(coll);
        }