public ActionResult <IAsyncEnumerable <SubCategoryDTO> > GetByCategory(Guid categoryId)
        {
            IAsyncEnumerable <SubCategoryDTO> list = _subSubCategoryService.GetByCategoryAsync(categoryId);

            return(Ok(list));
        }