Esempio n. 1
0
        public string GetCustomer()
        {
            CustomerBAL _Cust = new CustomerBAL();

            try
            {
                var    customers = _Cust.Load();
                string json      = new JavaScriptSerializer().Serialize(customers);


                return(json);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
            }
        }