Exemple #1
0
        public async Task <IActionResult> GetTestsGeneralStatistic(int offset, int count)
        {
            var generalStatisticCount = await testResultService.GetTestsGeneralStatisticCount();

            var testsGeneralStatistic = await testResultService.GetTestsGeneralStatistic(offset, count);

            return(responseComposer.ComposeForGetTestsGeneralStatistic(generalStatisticCount, testsGeneralStatistic));
        }