Esempio n. 1
0
        public IActionResult GetTutorQuestionAnswers(long UID = 0, long TQuestionId = 0)
        {
            QAResponse <List <TQuestionAnswer> > response = new QAResponse <List <TQuestionAnswer> >();

            response = TutorQuestionDB.GetAllTutorQuestionAnswers(UID, TQuestionId, GetConfiguration().GetConnectionString(DEFAULT_CONNECTION));
            return(Json(response));
        }