public void AddNewsComment(NewsCommentDto commentDto)
 {
     _newsRepository.Add(QsMapper.CreateMap <NewsCommentDto, NewsComment>(commentDto));
     _newsRepository.UnitOfWork.Commit();
     IncreaseCommentNumsOf("News", commentDto.NewsId);
 }