Пример #1
0
        public async Task <IActionResult> CreateForum(ForumDto dto)
        {
            var result = await forumService.CreateForumAsync(dto);

            return(Ok(result));
        }