Esempio n. 1
0
        public IActionResult GetCommentsByQuestionAnswerId(long TutorQuestionAnswerId = 0)
        {
            QAResponse <List <TQuestionAnswerComment> > response = new QAResponse <List <TQuestionAnswerComment> >();

            response = TutorQuestionDB.GetCommentsByQuestionAnswerId(TutorQuestionAnswerId, GetConfiguration().GetConnectionString(DEFAULT_CONNECTION));
            return(Json(response));
        }