Example #1
0
 public ActionResult <Post> Create([FromBody] Post post)
 {
     _ctx.Create(post);
     return(Created("Uri", post));
 }