public PartialViewResult CommentsList(int id)
        {
            Comic lot = _comicRepository.GetComicById(id);

            lot.Comments = _comicRepository.GetCommentsByComicId(id);
            return(PartialView(lot.Comments));
        }