예제 #1
0
 public async Task <ApiResult <string> > UpdateComment([FromBody] AdoComment parm)
 {
     return(await _adoCommentService.ModifyAsync(parm));
 }
예제 #2
0
 public async Task <ApiResult <string> > AddComment([FromBody] AdoComment model)
 {
     return(await _adoCommentService.AddAsync(model));
 }