Esempio n. 1
0
        public async Task <IActionResult> AddToCategory(CategoryTopicDto categoryTopicDto)
        {
            await _topicService.AddToCategoryAsync(categoryTopicDto);

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