Ejemplo n.º 1
0
        // Updated 08302017
        public List <SBInventoryBaseCateGroupViewModel> GetSelectListCategoriesInteSortParent(string StoreID, string itemType)
        {
            List <string> lstStore = new List <string>();

            lstStore.Add(StoreID);

            List <SBInventoryBaseCateGroupViewModel> lstCateGroup = _categoryFactoryInte.GetListCategorySortParent(lstStore, null, itemType, CurrentUser.ListOrganizationId);

            return(lstCateGroup);
        }
Ejemplo n.º 2
0
        // Updated 09222017
        // Display category by parent & child, sort by seq & name
        public List <SBInventoryBaseCateGroupViewModel> GetSelectListParentCategorySort(List <string> LstStoreID, string ProductTypeID, string CurCateId = null)
        {
            List <SBInventoryBaseCateGroupViewModel> lstData = _factory.GetListCategorySortParent(LstStoreID, null, ProductTypeID, CurrentUser.ListOrganizationId, CurCateId);

            return(lstData);
        }