Пример #1
0
        /// <summary>
        /// 获得所有店铺名字
        /// </summary>
        /// <returns></returns>
        public List <String> GetStore()
        {
            var           storeList = storeBLL.GetListBy(p => true);
            List <String> lis       = new List <string>();

            foreach (var item in storeList)
            {
                lis.Add(item.称);
            }
            return(lis);
        }