public IActionResult DownvoteAssignmentComment([FromRoute] int assignmentId, [FromRoute] int commentId)
 {
     return(this.NoContent(() => _AssignmentRepo.DownvoteComment(assignmentId, commentId).Equals((int)TransactionStatus.SUCCESS)));
 }