Example #1
0
 public IActionResult AddPost(int id, [FromBody] Post post)
 {
     _postRepository.AddPostProfile(id, post);
     return(Created(Request.Path + "/" + id, post));
 }