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