Пример #1
0
 public IActionResult CreateTopic([FromBody] Post post)
 {
     if (ModelState.IsValid)
     {
         var model = _TopicAppService.CreateTopic(post);
         return(Ok(model));
     }
     return(NotFound());
 }