示例#1
0
        public async Task <IActionResult> Delete([FromQuery] CommentDeleteContract contract)
        {
            _ = await _service.Delete(contract);

            return(Ok());
        }
示例#2
0
 public Task <EmptyResponse> Delete([NotNull] CommentDeleteContract contract)
 {
     return(DoRequest <CommentDeleteContract, EmptyResponse>(contract));
 }