Exemplo n.º 1
0
 public async Task <ActionResult <bool> > FeaturedPost(int id, [FromBody] bool featured)
 {
     return(await _postProvider.Featured(id, featured));
 }