Esempio n. 1
0
        public DataTable GetCustomerList()
        {
            CustomerDAL customer = new CustomerDAL();

            try
            {
                LumexDBPlayer db = LumexDBPlayer.Start();
                DataTable dt = customer.GetCustomerList(db);
                db.Stop();

                return dt;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                customer = null;
            }
        }