Example #1
0
 public async Task <IActionResult> GetStick()
 {
     return(new JsonResult(
                new APIResult <List <ListPostDTO> >()
     {
         Data = await PostSvc.GetByCommentCountAsync()
     }
                ));
 }