public async Task <IActionResult> GetAll()
        {
            var list = await _productCategoryConnectAPI.GetAll();

            return(Json(new
            {
                status = true,
                data = list
            }));
        }