public DataTable GetTradeAccountNumbersByCustomer(int customerId)
        {
            CustomerAccountDao customerAccountDao = new CustomerAccountDao();

            return(customerAccountDao.GetTradeAccountNumbersByCustomer(customerId));
        }