public IActionResult GetAllCurrentItemCategoriesByUserId(int userId)
        {
            var allItemCategories = _itemCategoryRepo.GetAllCurrentItemCategoriesByUserId(userId);

            return(Ok(allItemCategories));
        }