public ActionResult <IAsyncEnumerable <SubCategoryDTO> > GetAll()
        {
            IAsyncEnumerable <SubCategoryDTO> list = _subSubCategoryService.GetAllAsync();

            return(Ok(list));
        }