public CustomerCollection FetchByID(object CustomerID)
        {
            CustomerCollection coll = new CustomerCollection().Where("CustomerID", CustomerID).Load();

            return(coll);
        }