Ejemplo n.º 1
0
 public CommentDto Get(long id) => _commentAppService.Get(id);
Ejemplo n.º 2
0
 public async Task <IEnumerable <CommentDTO> > Get(string goodsId, int pageIndex, int pageSize)
 {
     return(await _commentAppService.Get(goodsId, pageIndex, pageSize));
 }