Exemplo n.º 1
0
        public async Task <Rounds> GetAllRoundsByEnabledQuiz()
        {
            var result = await _httpDataService.GetAsync <Rounds>("round", await LoginService.Login());

            return(result);
        }
        public async Task <Quizzes> GetAllQuizzes()
        {
            var result = await _httpDataService.GetAsync <Quizzes>("quiz", await LoginService.Login());

            return(result);
        }
        public async Task <Teams> GetAllTeams()
        {
            var result = await _httpDataService.GetAsync <Teams>("team", await LoginService.Login());

            return(result);
        }