public async Task <IActionResult> CreateCategory(CategoryFormDto dto) { var category = await _categoryBusiness.CreateCategoryAsync(dto); return(CreatedAtAction(nameof(GetCategory), new { category.Id }, category)); }