public PartialViewResult CommentsList(int id)
        {
            Bike lot = _bikeRepository.GetBikeById(id);

            lot.Comments = _bikeRepository.GetCommentsByBikeId(id);
            return(PartialView(lot.Comments));
        }