/// <summary>
 /// 不分页查询门店
 /// </summary>
 /// <param name="query"></param>
 /// <returns></returns>
 public static List <ShopBranch> GetShopBranchsNoPager(ShopBranchQuery query)
 {
     return((from n in _shopBranchService.GetShopBranchsNoPager(query)
             select new ShopBranch {
         Id = n.Id, ShopBranchName = n.ShopBranchName, AddressDetail = GetShopBranchsFullAddress(n.AddressPath) + n.AddressDetail, RecommendSequence = n.RecommendSequence
     } into n
             orderby n.RecommendSequence
             select n).ToList <ShopBranch>());
 }