Exemple #1
0
 public async Task <ActionResult> DeletePost([FromBody] Post post)
 {
     return(Ok(await _postRepository.DeletePostAsync(post.Id)));
 }