public async Task <ActionResult <Guid> > Create(ProductCategory category, CancellationToken ct = default)
        {
            category.AccountId = _userContext.AccountId;

            var id = await _userCategoriesService.CreateAsync(_userContext.UserId, category, ct);

            return(Created(nameof(Get), id));
        }