示例#1
0
 public IActionResult AddPost([FromBody] PostEntity post)
 {
     try
     {
         _feedService.AddPost(post);
         return(Created("addPost", post));
     }
     catch
     {
         return(BadRequest());
     }
 }