Exemplo n.º 1
0
        /// <summary>
        ///获取客户分类信息
        /// </summary>
        /// <returns></returns>
        public string GetCousCustomerType()
        {
            var     customerBasicSettingBLL = new CustomerBasicSettingBLL(this.CurrentUserInfo);
            DataSet ds = customerBasicSettingBLL.GetCousCustomerType();

            if (ds != null && ds.Tables.Count > 0)
            {
                return(string.Format("{0}", ds.Tables[0].ToJSON()));
            }
            return(string.Format("{{\"data\":''}}"));
        }