Exemple #1
0
        /// <summary>
        /// 需要打包的Item category集合
        /// </summary>
        /// <param name="Customer_Id">客户标识</param>
        /// <param name="User_Id">用户标识</param>
        /// <param name="Unit_Id">组织标识</param>
        /// <returns>未打包的商品集合</returns>
        public IList <ItemCategoryInfo> GetItemCategoryListPackaged(string Customer_Id, string User_Id, string Unit_Id)
        {
            IList <ItemCategoryInfo> itemCategoryInfoList = new List <ItemCategoryInfo>();
            LoggingSessionInfo       loggingSessionInfo   = GetLoggingSessionInfo(Customer_Id, User_Id, Unit_Id);
            ItemCategoryService      itemCategoryService  = new ItemCategoryService();

            itemCategoryInfoList = itemCategoryService.GetItemCategoryListPackaged(loggingSessionInfo);
            return(itemCategoryInfoList);
        }