Ejemplo n.º 1
0
        public async Task <IActionResult> DeleteComment(int id)
        {
            Result result = await _commentGateway.Delete(id);

            return(this.CreateResult(result));
        }
Ejemplo n.º 2
0
 public void DeleteComment(int commentId)
 {
     _commentGateway.Delete(commentId);
 }