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

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