コード例 #1
0
        public string GetStatisticTest(DTO.InterviweeTest InterviweeTest)
        {
            // Статистика прохождения теста.
            DTO.TestStatistic _TestStatistic = new DTO.TestStatistic();

            // Количество прохождений теста.
            _TestStatistic.CountComplete = m_Statistic.GetCountCompleteTest(InterviweeTest.InterviweeId, InterviweeTest.TestId);

            // Статистика прохождений по вопросам.
            _TestStatistic.ArrayData = m_Statistic.GetArrayQuestionStatistic(InterviweeTest.TestId);

            string _Json = Utils.JsonSerialize(_TestStatistic);

            return(_Json);
        }