Beispiel #1
0
        public async Task <IActionResult> AddCategory(BlogCategoryDto blogCategoryDto)
        {
            await blogService.AddCategoryToBlog(blogCategoryDto);

            return(Created("", blogCategoryDto));
        }