public Question_Stats GetQuestionStart(int _question_id)
        {
            var           context = new API_DBDataContext(ConfigurationManager.ConnectionStrings["Connections string"].ConnectionString);
            poll_question A       = new poll_question();

            A.id   = _question_id;
            A.text = Convert.ToString(context.pool_question.Where(p => p.question_id == _question_id).Select(p => p.text).FirstOrDefault());
            Question_Stats Res = new Question_Stats(A);

            return(Res);
        }
Exemple #2
0
        public Poll GetPoolForID(int _question_id)
        {
            poll_question a   = new poll_question();
            Poll          Res = new Poll();

            Res.id = _question_id;
            var context = new API_DBDataContext(ConfigurationManager.ConnectionStrings["Connections string"].ConnectionString);

            Res.quesstion = Convert.ToString(context.pool_question.Where(p => p.question_id == _question_id).Select(p => p.text).First());
            Res.answers   = a.GetAnswers(_question_id);
            return(Res);
        }
Exemple #3
0
        // GET: PoolQuestion
        public Poll[]  GetPool()
        {
            poll_question a       = new poll_question();
            var           context = new API_DBDataContext(ConfigurationManager.ConnectionStrings["Connections string"].ConnectionString);
            int           n       = context.pool_question.Count();

            int[] mass = new int[n];
            for (int i = 0; i < n; i++)
            {
                mass[i] = Convert.ToInt32(context.pool_question.Select(p => p.question_id).Skip(i).Take(1).Skip(n - i));
            }
            return(a.ToPoll(mass));
        }