Example #1
0
        public async Task <CreateResult> Create(string tenantSlug, ProductCategoryModel model)
        {
            var user = await _userService.GetUserAsync(User);

            await _productCategoryService.CreateAsync(tenantSlug, model, user);

            return(Created());
        }