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

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