public async void AddComment([FromBody] Comment comment, int QuestionId)
        {
            var Question = await _questionRepository.Get(QuestionId);

            if (comment != null && Question != null)
            {
                _questionRepository.AddComment(comment, Question);
            }
        }